diff options
author | Dan Gohman <gohman@apple.com> | 2008-06-10 00:36:41 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-06-10 00:36:41 +0000 |
commit | 1b095b443c7d57331eaf52f4069dccdedbc6046f (patch) | |
tree | c853b1ce6e9182e8ee07381ffd045f25f724f6e4 /llvm/test/CodeGen/X86/nancvt.ll | |
parent | d0c1df4c84a7d64ee2a035394ca8ac2fb20faefa (diff) | |
download | bcm5719-llvm-1b095b443c7d57331eaf52f4069dccdedbc6046f.tar.gz bcm5719-llvm-1b095b443c7d57331eaf52f4069dccdedbc6046f.zip |
Convert several tests to use temporary files instead of redundantly
executing the test commands.
llvm-svn: 52163
Diffstat (limited to 'llvm/test/CodeGen/X86/nancvt.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/nancvt.ll | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/llvm/test/CodeGen/X86/nancvt.ll b/llvm/test/CodeGen/X86/nancvt.ll index 9e5b73d6f32..96cac0dc329 100644 --- a/llvm/test/CodeGen/X86/nancvt.ll +++ b/llvm/test/CodeGen/X86/nancvt.ll @@ -1,7 +1,8 @@ -; RUN: llvm-as < %s | opt -std-compile-opts | llc | grep 2147027116 | count 3 -; RUN: llvm-as < %s | opt -std-compile-opts | llc | grep 2147228864 | count 3 -; RUN: llvm-as < %s | opt -std-compile-opts | llc | grep 2146502828 | count 3 -; RUN: llvm-as < %s | opt -std-compile-opts | llc | grep 2143034560 | count 3 +; RUN: llvm-as < %s | opt -std-compile-opts | llc > %t +; RUN: grep 2147027116 %t | count 3 +; RUN: grep 2147228864 %t | count 3 +; RUN: grep 2146502828 %t | count 3 +; RUN: grep 2143034560 %t | count 3 ; Compile time conversions of NaNs. ; ModuleID = 'nan2.c' target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:128:128" |