Displaying 1 result from an estimated 1 matches for "f_gpr".
Did you mean:
_gpr
2005 Jan 03
0
[LLVMdev] [patch] native AMD64 support
...H_387;
> +#else
> /* Enable by default the SSE and MMX builtins. */
> target_flags |= (MASK_SSE2 | MASK_SSE | MASK_MMX | MASK_128BIT_LONG_DOUBLE);
> ix86_fpmath = FPMATH_SSE;
> +#endif
> }
> else
> {
> @@ -2795,7 +2801,8 @@
> tree f_gpr, f_fpr, f_ovf, f_sav, record, type_decl;
>
> /* For i386 we use plain pointer to argument area. */
> - if (!TARGET_64BIT)
> + /* LLVM also uses the i386 standard version in 64-bit mode */
> + if (!TARGET_64BIT || EMIT_LLVM)
> return build_pointer_type (char_type_node...