Re: [C++ PATCH] Fix ICE with COMPOUND_EXPR in constexpr (PR c++/54777)

2012-10-03 Thread Jason Merrill
OK. Jason

[C++ PATCH] Fix ICE with COMPOUND_EXPR in constexpr (PR c++/54777)

2012-10-02 Thread Jakub Jelinek
Hi! We ICE on the following testcase, because cxx_eval_constant_expression on COMPOUND_EXPR uses STRIP_NOPS (op1) - needed for the check whether it is an artificial COMPOUND_EXPR. Unfortunately that means it uses op1 without NOP_EXPRs even if it is a user comma expression. Fixed thusly, bootstra