search for: first_pseudo_regist

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

Did you mean: first_pseudo_register
2011 Jun 18
0
[LLVMdev] Make dragonegg work with gcc-4.6
.../Convert.cpp (working copy) @@ -60,7 +60,7 @@ #include "tree-flow.h" #include "tree-pass.h" -extern int get_pointer_alignment (tree exp, unsigned int max_align); +extern unsigned get_pointer_alignment (tree exp, unsigned int max_align); extern enum machine_mode reg_raw_mode[FIRST_PSEUDO_REGISTER]; } @@ -1306,9 +1306,11 @@ case INDIRECT_REF: LV = EmitLV_INDIRECT_REF(exp); break; +#if (GCC_MINOR < 6) case MISALIGNED_INDIRECT_REF: LV = EmitLV_MISALIGNED_INDIRECT_REF(exp); break; +#endif } // Check that the type of the lvalue is indeed that of a pointe...