LEFT | RIGHT |
1 /* { dg-do compile} */ | 1 /* { dg-do run} */ |
2 /* { dg-options "-mpatch-functions-for-instrumentation -mno-patch-functions-main
-always" } */ | 2 /* { dg-options "-mpatch-functions-for-instrumentation -mno-patch-functions-main
-always" } */ |
3 | 3 |
4 /* 'main' shouldn't be patched with the option -mno-patch-functions-main-always. | 4 /* 'main' shouldn't be patched with the option -mno-patch-functions-main-always. |
5 Check there aren't any nop-bytes at beginning and end of main. */ | 5 Check there aren't any nop-bytes at beginning and end of main. */ |
6 | 6 |
7 /* { dg-final { scan-assembler-not ".byte\t0xeb,0x09(.*).byte\t0x90" } } */ | 7 /* { dg-final { scan-assembler-not ".byte\t0xeb,0x09(.*).byte\t0x90" } } */ |
8 /* { dg-final { scan-assembler-not "ret(.*).byte\t0x90(.*).byte\t0x90" } } */ | 8 /* { dg-final { scan-assembler-not "ret(.*).byte\t0x90(.*).byte\t0x90" } } */ |
9 | 9 |
10 int main(int argc, char **argv) { | 10 int main(int argc, char **argv) { |
11 int x = 0; | 11 int x = 0; |
12 return 0; | 12 return 0; |
13 } | 13 } |
LEFT | RIGHT |