diff options
author | Dan Gohman <gohman@apple.com> | 2009-03-27 16:17:22 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-03-27 16:17:22 +0000 |
commit | 3f50cb6cd4d3c6f0906bbc7f8c4e837c639de341 (patch) | |
tree | c621eb9153a63f346220b28ce69a7f9e367504c0 | |
parent | 705f2a6cd22e6d72661966002b64a03bda46724b (diff) | |
download | bcm5719-llvm-3f50cb6cd4d3c6f0906bbc7f8c4e837c639de341.tar.gz bcm5719-llvm-3f50cb6cd4d3c6f0906bbc7f8c4e837c639de341.zip |
Fix this test so that it doesn't spuriously fail due to some
unrelated debugging output happening to contain the string "store".
llvm-svn: 67849
-rw-r--r-- | llvm/test/CodeGen/PowerPC/int-fp-conv-0.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/PowerPC/int-fp-conv-0.ll b/llvm/test/CodeGen/PowerPC/int-fp-conv-0.ll index e8055d32b3e..3dfc4b10bc5 100644 --- a/llvm/test/CodeGen/PowerPC/int-fp-conv-0.ll +++ b/llvm/test/CodeGen/PowerPC/int-fp-conv-0.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -march=ppc64 -debug |& not grep store +; RUN: llvm-as < %s | llc -march=ppc64 -debug |& not grep {= store} ; RUN: llvm-as < %s | llc -march=ppc64 > %t ; RUN: grep __floattitf %t ; RUN: grep __fixunstfti %t |