aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/2008-11-02-WeakAlias.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/2008-11-02-WeakAlias.c')
-rw-r--r--test/CodeGen/2008-11-02-WeakAlias.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/CodeGen/2008-11-02-WeakAlias.c b/test/CodeGen/2008-11-02-WeakAlias.c
new file mode 100644
index 000000000000..63fd4e15eac9
--- /dev/null
+++ b/test/CodeGen/2008-11-02-WeakAlias.c
@@ -0,0 +1,6 @@
+// RUN: %clang_cc1 -triple=i686-pc-linux-gnu -emit-llvm -o - %s | FileCheck %s
+// PR2691
+
+// CHECK: weak
+void init_IRQ(void) __attribute__((weak, alias("native_init_IRQ")));
+void native_init_IRQ(void) {}