aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/mangle.c
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-03-31 22:37:52 +0000
committerChris Lattner <sabre@nondot.org>2009-03-31 22:37:52 +0000
commit35f38a2c22d68c22e2dbe8e9ee84c120c8f327bb (patch)
treec7738badb0de7adc1d10fa8b5fdc09cb62d59307 /test/CodeGen/mangle.c
parent481769b5dc102b0256b35581e787909ad5edfab5 (diff)
Change UsedArray to be a vector of WeakVH to fix a dangling pointer problem that occurs when
attribute(used) and asm renaming are used together. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@68155 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/mangle.c')
-rw-r--r--test/CodeGen/mangle.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/CodeGen/mangle.c b/test/CodeGen/mangle.c
index 6571a4b787..b3affe9469 100644
--- a/test/CodeGen/mangle.c
+++ b/test/CodeGen/mangle.c
@@ -47,3 +47,8 @@ void test3() {
void foo6() __asm__("var2");
void foo6() {
}
+
+
+
+int foo7 __asm__("foo7") __attribute__((used));
+float foo8 __asm__("foo7") = 42;