search for: build_pointer_typ

Displaying 1 result from an estimated 1 matches for "build_pointer_typ".

Did you mean: build_pointer_type
2005 Jan 03
0
[LLVMdev] [patch] native AMD64 support
...95,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); > > record = (*lang_hooks.types.make_type) (RECORD_TYPE); > @@ -2858,7 +2865,8 @@ > int stdarg_p; > int i; > > - if (!TARGET_64BIT) > + /* LLVM also uses the i386 standard version in 64-bit mode */ > + if (!TARGET_64BIT || EMIT_LLVM) &gt...