No need for those tests to go thru llvm-as and/or llvm-dis.
authorArnaud A. de Grandmaison <arnaud.adegm@gmail.com>
Tue, 27 May 2014 22:03:28 +0000 (22:03 +0000)
committerArnaud A. de Grandmaison <arnaud.adegm@gmail.com>
Tue, 27 May 2014 22:03:28 +0000 (22:03 +0000)
opt can handle them by itself.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@209689 91177308-0d34-0410-b5e6-96231b3b80d8

test/Assembler/half-constprop.ll
test/Assembler/half-conv.ll
test/DebugInfo/2010-03-19-DbgDeclare.ll
test/Transforms/IPConstantProp/2009-09-24-byval-ptr.ll
test/Transforms/JumpThreading/phi-eq.ll
test/Transforms/LoopSimplify/2007-10-28-InvokeCrash.ll

index 03ccdda97e0a34bac6372c84973d6373f2f4dad2..9e24f7242ba927f9043b740d2cedfcb208dfd14b 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: llvm-as < %s | opt -O3 | llvm-dis | FileCheck %s
+; RUN: opt < %s -O3 -S | FileCheck %s
 ; Testing half constant propagation.
 
 define half @abc() nounwind {
index bf9ae5713979d90f78d090f3b73f0518501e75a9..70a6b86c393f4e4326f7d8d4a3736e44f4916de3 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: llvm-as < %s | opt -O3 | llvm-dis | FileCheck %s
+; RUN: opt < %s -O3 -S | FileCheck %s
 ; Testing half to float conversion.
 
 define float @abc() nounwind {
index 1ff7fa88bdc3581326706846c3af08537ecc8b55..94aa259d31b65e7a7376ab65a5c7104a9534faae 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: llvm-as < %s | opt -verify -S | FileCheck %s
+; RUN: opt < %s -verify -S | FileCheck %s
 
 ; CHECK: lang 0x8001
 
index bd174a8be3ff0c0c67f62d8735e146355876003a..4ea0b88fd0de3e4f358a839b6b4e6c3d4eef5964 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: llvm-as <%s | opt -ipsccp | llvm-dis | FileCheck %s
+; RUN: opt < %s -ipsccp -S | FileCheck %s
 ; Don't constant-propagate byval pointers, since they are not pointers!
 ; PR5038
 %struct.MYstr = type { i8, i32 }
index 40d3c7edd05deb05aa42bfb4841d6f9c662b4fe5..e05d5ee7c974105381ea8e735668ebeb90499d4b 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: llvm-as < %s | opt -jump-threading | llvm-dis | FileCheck %s
+; RUN: opt < %s -jump-threading -S | FileCheck %s
 ; Test whether two consecutive switches with identical structures assign the
 ; proper value to the proper variable.  This is really testing 
 ; Instruction::isIdenticalToWhenDefined, as previously that function was 
index e91d141cc6fff0a69c6acb97b9b4391957ab472b..0534a0bf7d06f91238a164a13a4a48730e979aee 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: llvm-as < %s | opt -loop-simplify -disable-output
+; RUN: opt < %s -loop-simplify -disable-output
 ; PR1752
 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-s0:0:64-f80:32:32"
 target triple = "i686-pc-mingw32"