summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-12-05 06:45:30 +0000
committerChris Lattner <sabre@nondot.org>2004-12-05 06:45:30 +0000
commitbf90a5be711c572acad83061a3a965d4c48eecbd (patch)
tree433cfcebb3b3a11117bf07375a6d5099f19fac9f /test
parent333529e6be764aa1e4f83eb25817407a758f37c8 (diff)
downloadllvm-bf90a5be711c572acad83061a3a965d4c48eecbd.tar.gz
llvm-bf90a5be711c572acad83061a3a965d4c48eecbd.tar.bz2
llvm-bf90a5be711c572acad83061a3a965d4c48eecbd.tar.xz
Change this test to not require execution of the program.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18533 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/Assembler/2004-12-05-LocalGlobalSymtabConflict.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Assembler/2004-12-05-LocalGlobalSymtabConflict.ll b/test/Assembler/2004-12-05-LocalGlobalSymtabConflict.ll
index 357f555529..66e7d121a9 100644
--- a/test/Assembler/2004-12-05-LocalGlobalSymtabConflict.ll
+++ b/test/Assembler/2004-12-05-LocalGlobalSymtabConflict.ll
@@ -1,4 +1,4 @@
-; RUN: llvm-as < %s | opt -inline | llvm-dis | llvm-as | lli
+; RUN: llvm-as < %s | opt -inline | llvm-dis | 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.