blob: ae3f1baac3f2494f52a7d22ea04fad1629584e6e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#include <stdio.h>
int main(void) {
const void *addrs[2] = {&&FOO, &&BAR};
// confuse the optimizer so it doesn't hardcode the jump and avoid generating
// an |indirectbr| instruction
int which = 0;
for (int x = 0; x < 1000; x++) which = (which + x * x) % 7;
which = (which % 2) + 1;
goto *addrs[which];
FOO:
printf("bad\n");
return 0;
BAR:
printf("good\n");
const void *addr = &&FOO;
goto *addr;
}
|