aboutsummaryrefslogtreecommitdiffstats
path: root/test/Assembler
diff options
context:
space:
mode:
Diffstat (limited to 'test/Assembler')
-rw-r--r--test/Assembler/2004-12-05-LocalGlobalSymtabConflict.ll21
1 files changed, 0 insertions, 21 deletions
diff --git a/test/Assembler/2004-12-05-LocalGlobalSymtabConflict.ll b/test/Assembler/2004-12-05-LocalGlobalSymtabConflict.ll
deleted file mode 100644
index 7372497..0000000
--- a/test/Assembler/2004-12-05-LocalGlobalSymtabConflict.ll
+++ /dev/null
@@ -1,21 +0,0 @@
-; RUN: llvm-as < %s | opt -inline | llvm-dis | \
-; RUN: not grep {%G = alloca int}
-
-; In this testcase, %bar stores to the global G. Make sure that inlining does
-; not cause it to store to the G in main instead.
-@G = global i32 7 ; <i32*> [#uses=1]
-
-define i32 @main() {
- %G = alloca i32 ; <i32*> [#uses=2]
- store i32 0, i32* %G
- call void @bar( )
- %RV = load i32* %G ; <i32> [#uses=1]
- ret i32 %RV
-}
-
-define internal void @bar() {
- store i32 123, i32* @G
- ret void
-}
-
-