/* PR rtl-optimization/27671. The combiner used to simplify "a ^ b == a" to "a" via simplify_relational_operation_1 in simplify-rtx.c. */externvoidabort(void)__attribute__((noreturn));externvoidexit(int)__attribute__((noreturn));staticint__attribute__((noinline))foo(inta,intb){intc=a^b;if(c==a)abort();}intmain(void){foo(0,1);exit(0);}