From 26fdb11e4eee597b1b8980336bfde6af1e04273c Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 17 Feb 2008 00:12:03 +0000 Subject: [PATCH] this test isn't useful since we added @ notation for globals. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47229 91177308-0d34-0410-b5e6-96231b3b80d8 --- .../2004-12-05-LocalGlobalSymtabConflict.ll | 21 ------------------- 1 file changed, 21 deletions(-) delete mode 100644 test/Assembler/2004-12-05-LocalGlobalSymtabConflict.ll diff --git a/test/Assembler/2004-12-05-LocalGlobalSymtabConflict.ll b/test/Assembler/2004-12-05-LocalGlobalSymtabConflict.ll deleted file mode 100644 index 7372497ca2d..00000000000 --- 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 ; [#uses=1] - -define i32 @main() { - %G = alloca i32 ; [#uses=2] - store i32 0, i32* %G - call void @bar( ) - %RV = load i32* %G ; [#uses=1] - ret i32 %RV -} - -define internal void @bar() { - store i32 123, i32* @G - ret void -} - - -- 2.34.1