diff options
| author | Dan Gohman <gohman@apple.com> | 2009-09-08 22:34:10 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2009-09-08 22:34:10 +0000 |
| commit | 72a13d2476706227a6ae42001631b1e5ac4db956 (patch) | |
| tree | 074e63d84183790a2ce3abb2eb33c643cea972eb /llvm/test/CodeGen | |
| parent | e6a80ced1c4b024eef35a4a8036c1541fdaf89be (diff) | |
| download | bcm5719-llvm-72a13d2476706227a6ae42001631b1e5ac4db956.tar.gz bcm5719-llvm-72a13d2476706227a6ae42001631b1e5ac4db956.zip | |
Use opt -S instead of piping bitcode output through llvm-dis.
llvm-svn: 81257
Diffstat (limited to 'llvm/test/CodeGen')
| -rw-r--r-- | llvm/test/CodeGen/Generic/GC/inline.ll | 2 | ||||
| -rw-r--r-- | llvm/test/CodeGen/Generic/GC/inline2.ll | 4 | ||||
| -rw-r--r-- | llvm/test/CodeGen/X86/2009-03-23-i80-fp80.ll | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/llvm/test/CodeGen/Generic/GC/inline.ll b/llvm/test/CodeGen/Generic/GC/inline.ll index 54d91edd7d3..5dd171abd2e 100644 --- a/llvm/test/CodeGen/Generic/GC/inline.ll +++ b/llvm/test/CodeGen/Generic/GC/inline.ll @@ -1,4 +1,4 @@ -; RUN: opt %s -inline | llvm-dis | grep example +; RUN: opt %s -inline -S | grep example %IntArray = type { i32, [0 x i32*] } diff --git a/llvm/test/CodeGen/Generic/GC/inline2.ll b/llvm/test/CodeGen/Generic/GC/inline2.ll index a6bcc1bf812..ad98e3e3453 100644 --- a/llvm/test/CodeGen/Generic/GC/inline2.ll +++ b/llvm/test/CodeGen/Generic/GC/inline2.ll @@ -1,5 +1,5 @@ -; RUN: opt %s -inline | llvm-dis | grep sample -; RUN: opt %s -inline | llvm-dis | grep example +; RUN: opt %s -inline -S | grep sample +; RUN: opt %s -inline -S | grep example %IntArray = type { i32, [0 x i32*] } diff --git a/llvm/test/CodeGen/X86/2009-03-23-i80-fp80.ll b/llvm/test/CodeGen/X86/2009-03-23-i80-fp80.ll index 3b908656874..7eadda86e60 100644 --- a/llvm/test/CodeGen/X86/2009-03-23-i80-fp80.ll +++ b/llvm/test/CodeGen/X86/2009-03-23-i80-fp80.ll @@ -1,5 +1,5 @@ -; RUN: opt %s -instcombine | llvm-dis | grep 302245289961712575840256 -; RUN: opt %s -instcombine | llvm-dis | grep K40018000000000000000 +; RUN: opt %s -instcombine -S | grep 302245289961712575840256 +; RUN: opt %s -instcombine -S | grep K40018000000000000000 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" target triple = "i686-apple-darwin9" |

