diff options
Diffstat (limited to 'ld/testsuite/ld-plugin/lto-8b.c')
-rw-r--r-- | ld/testsuite/ld-plugin/lto-8b.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/ld/testsuite/ld-plugin/lto-8b.c b/ld/testsuite/ld-plugin/lto-8b.c new file mode 100644 index 0000000..3b6db5f --- /dev/null +++ b/ld/testsuite/ld-plugin/lto-8b.c @@ -0,0 +1,14 @@ +extern int bar(void) __attribute__((__visibility__("hidden"), __const__)); +extern void baz(int); + +void foo(char c) +{ + int i; + + if (bar()) + i = c; + else + i = c; + + baz(i); +} |