diff options
author | Chris Lattner <sabre@nondot.org> | 2009-03-31 22:37:52 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-03-31 22:37:52 +0000 |
commit | 35f38a2c22d68c22e2dbe8e9ee84c120c8f327bb (patch) | |
tree | c7738badb0de7adc1d10fa8b5fdc09cb62d59307 /test/CodeGen/mangle.c | |
parent | 481769b5dc102b0256b35581e787909ad5edfab5 (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.c | 5 |
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; |