Rebase.
[official-gcc.git] / gcc / testsuite / gcc.target / mips / branch-15.c
blobdee7a0504d6335ecaf1c920a3a3a1e25b2ad2843
1 /* An executable version of branch-3.c. */
2 /* { dg-do run } */
4 #include "branch-helper.h"
6 void
7 foo (volatile int *x)
9 if (__builtin_expect (*x == 0, 1))
10 OCCUPY_0x1fffc;
13 int
14 main (void)
16 int x = 0;
17 int y = 1;
19 foo (&x);
20 foo (&y);
22 return 0;