[PATCH] RISC-V: Fix unrecognizable pattern in riscv_expand_conditional_move()
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 960419-1.c
blob6cecc054bc748c43384b524b5aed69e607f81dc9
1 void abort (void);
2 void exit (int);
4 static int i;
6 void
7 check(x)
8 int x;
10 if (!x)
11 abort();
14 int
15 main(void)
17 int *p = &i;
19 check(p != (void *)0);
20 exit (0);