On Tue, May 29, 2012 at 5:32 PM, Sterling Augustine
<[email protected]> wrote:
>> Index: gcc/c-family/c-pretty-print.h
>> ===================================================================
>> --- gcc/c-family/c-pretty-print.h (revision 187603)
>> +++ gcc/c-family/c-pretty-print.h (working copy)
>> @@ -30,7 +30,8 @@ along with GCC; see the file COPYING3. If not see
>> typedef enum
>> {
>> pp_c_flag_abstract = 1 << 1,
>> - pp_c_flag_last_bit = 2
>> + pp_c_flag_last_bit = 2,
>> + pp_c_flag_gnu_v3 = 4
"last bit" should really be last bit. That means the value for
pp_c_flags_last_bits
should be 1 << 2 with the new addition.