On 11/03/2015 02:34 AM, Jeff Law wrote:
> 
>> @@ -14279,8 +14272,9 @@ tsubst_copy (tree t, tree args, tsubst_flags_t
>> complain, tree in_decl)
>>         return tsubst_binary_right_fold (t, args, complain, in_decl);
>>
>>       default:
>> -      /* We shouldn't get here, but keep going if !ENABLE_CHECKING.  */
>> -      gcc_checking_assert (false);
>> +      /* We shouldn't get here, but keep going if !flag_checking.  */
>> +      if (!flag_checking)
>> +    gcc_unreachable ();
>>         return t;
>>       }
>>   }
> I think this condition was reversed, right?
> 
> Please fix that and install on the trunk.
> 
> Thanks again!
> 
> jeff

Fixed and committed as r229756.

-- 
Regards,
    Mikhail Maltsev

Reply via email to