Displaying 1 result from an estimated 1 matches for "target_rtd".
Did you mean:
target_id
2005 Jan 03
0
[LLVMdev] [patch] native AMD64 support
...c/config/i386/i386.c,v
> retrieving revision 1.1.1.2
> diff -u -r1.1.1.2 i386.c
> --- i386.c 13 Jan 2004 16:49:45 -0000 1.1.1.2
> +++ i386.c 23 Dec 2004 05:31:32 -0000
> @@ -1381,9 +1381,15 @@
> error ("-malign-double makes no sense in the 64bit mode");
> if (TARGET_RTD)
> error ("-mrtd calling convention not supported in the 64bit mode");
> +#if EMIT_LLVM
> + /* set to standard X86 values (using 64-bit long doubles under LLVM) */
> + target_flags &= ~(MASK_SSE2 | MASK_SSE | MASK_MMX | MASK_128BIT_LONG_DOUBLE);
> + ix8...