blob: 876ebe9868277b4055896f06cd06dafb673169c7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/*
pr27671.c from the execute part of the gcc torture tests.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#endif
/* PR rtl-optimization/27671.
The combiner used to simplify "a ^ b == a" to "a" via
simplify_relational_operation_1 in simplify-rtx.c. */
/*extern void abort (void) __attribute__ ((noreturn));
extern void exit (int) __attribute__ ((noreturn));*/
static int
foo (int a, int b)
{
int c = a ^ b;
if (c == a)
ASSERT (0);
}
void
testTortureExecute (void)
{
foo (0, 1);
return;
}
|