aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2010-06-16 18:04:12 +0000
committerDevang Patel <dpatel@apple.com>2010-06-16 18:04:12 +0000
commit6e67c6cb3cbc33b25ac23b191dded747198c08f8 (patch)
tree3d5d3530ff76116f06e93562b33f1a6ddbb8af25
parent504c0cda91a6c6c8828c5a55f1516881b6f99e8c (diff)
downloadexternal_llvm-6e67c6cb3cbc33b25ac23b191dded747198c08f8.zip
external_llvm-6e67c6cb3cbc33b25ac23b191dded747198c08f8.tar.gz
external_llvm-6e67c6cb3cbc33b25ac23b191dded747198c08f8.tar.bz2
Update test to explicitly capture llc output.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106121 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/DebugInfo/2010-06-01-DeadArg-DbgInfo.ll3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/DebugInfo/2010-06-01-DeadArg-DbgInfo.ll b/test/DebugInfo/2010-06-01-DeadArg-DbgInfo.ll
index 481c12c..b1e3367 100644
--- a/test/DebugInfo/2010-06-01-DeadArg-DbgInfo.ll
+++ b/test/DebugInfo/2010-06-01-DeadArg-DbgInfo.ll
@@ -1,4 +1,5 @@
-; RUN: llc -O2 < %s | grep this | grep -v undef
+; RUN: llc -O2 %s -o %t
+; RUN: grep this %t | grep -v undef
; Test to check that unused argument 'this' is not undefined in debug info.
%struct.foo = type { i32 }