aboutsummaryrefslogtreecommitdiff
path: root/test/FrontendC/weak_constant.c
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2009-03-20 21:53:29 +0000
committerDuncan Sands <baldrick@free.fr>2009-03-20 21:53:29 +0000
commitab6b226978644c438a3a7768a06dcd48509d000c (patch)
tree8d574fefe86e8fa7cf23552dc4353c69bc8dec20 /test/FrontendC/weak_constant.c
parentdb95fa131a229652f925794ca7a5b84e9490050b (diff)
Don't load values out of global constants with weak
linkage: the value may be replaced with something different at link time. (Frontends that want to allow values to be loaded out of weak constants can give their constants weak_odr linkage). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@67407 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/FrontendC/weak_constant.c')
-rw-r--r--test/FrontendC/weak_constant.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/FrontendC/weak_constant.c b/test/FrontendC/weak_constant.c
new file mode 100644
index 0000000000..53379482cb
--- /dev/null
+++ b/test/FrontendC/weak_constant.c
@@ -0,0 +1,12 @@
+// RUN: %llvmgcc -S %s -O1 -o - | grep {ret.*123}
+// Check for bug compatibility with gcc.
+
+const int x __attribute((weak)) = 123;
+
+int* f(void) {
+ return &x;
+}
+
+int g(void) {
+ return *f();
+}