forked from OSchip/llvm-project
Tests: rewrite 'opt ... %s' to 'opt ... < %s' so that opt does not emit a ModuleID
This is done to avoid odd test failures, like the one fixed in r171243. llvm-svn: 171246
This commit is contained in:
parent
5e8ff877f4
commit
b137c9e551
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt -analyze -scalar-evolution %s -S | FileCheck %s
|
||||
; RUN: opt -analyze -scalar-evolution -S < %s | FileCheck %s
|
||||
|
||||
define i16 @test1(i8 %x) {
|
||||
%A = zext i8 %x to i12
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt -codegenprepare %s -S -o - | FileCheck %s
|
||||
; RUN: opt -codegenprepare -S < %s | FileCheck %s
|
||||
|
||||
target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64"
|
||||
target triple = "x86_64-apple-darwin10.0.0"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt -S -constmerge %s | FileCheck %s
|
||||
; RUN: opt -S -constmerge < %s | FileCheck %s
|
||||
|
||||
; CHECK: @foo = constant i32 6
|
||||
; CHECK: @bar = constant i32 6
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt -constmerge %s -S -o - | FileCheck %s
|
||||
; RUN: opt -constmerge -S < %s | FileCheck %s
|
||||
; PR8978
|
||||
|
||||
declare i32 @zed(%struct.foobar*, %struct.foobar*)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt -constmerge %s -S -o - | FileCheck %s
|
||||
; RUN: opt -constmerge -S < %s | FileCheck %s
|
||||
; Test that in one run var3 is merged into var2 and var1 into var4.
|
||||
; Test that we merge @var5 and @var6 into one with the higher alignment, and
|
||||
; don't merge var7/var8 into var5/var6.
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt -constmerge %s -S -o - | FileCheck %s
|
||||
; RUN: opt -constmerge -S < %s | FileCheck %s
|
||||
; Test which corresponding x and y are merged and that unnamed_addr
|
||||
; is correctly set.
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt -deadargelim -S %s | FileCheck %s
|
||||
; RUN: opt -deadargelim -S < %s | FileCheck %s
|
||||
|
||||
define void @test(i32) {
|
||||
ret void
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt -basicaa -dse -S -o - %s | FileCheck %s
|
||||
; RUN: opt -basicaa -dse -S < %s | FileCheck %s
|
||||
; PR11390
|
||||
target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128"
|
||||
target triple = "x86_64-unknown-linux-gnu"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt -S -basicaa -gvn -enable-load-pre %s | FileCheck %s
|
||||
; RUN: opt -S -basicaa -gvn -enable-load-pre < %s | FileCheck %s
|
||||
;
|
||||
; The partially redundant load in bb1 should be hoisted to "bb". This comes
|
||||
; from this C code (GCC PR 23455):
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt -S -gvn -enable-load-pre %s | FileCheck %s
|
||||
; RUN: opt -S -gvn -enable-load-pre < %s | FileCheck %s
|
||||
;
|
||||
; Make sure the load in bb3.backedge is removed and moved into bb1 after the
|
||||
; call. This makes the non-call case faster.
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt -globalopt %s -S | FileCheck %s
|
||||
; RUN: opt -globalopt -S < %s | FileCheck %s
|
||||
target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64"
|
||||
target triple = "x86_64-apple-darwin10.0.0"
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt -globalopt %s -S -o - | FileCheck %s
|
||||
; RUN: opt -globalopt -S < %s | FileCheck %s
|
||||
; PR10047
|
||||
|
||||
%0 = type { i32, void ()* }
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt -S -indvars %s | FileCheck %s
|
||||
; RUN: opt -S -indvars < %s | FileCheck %s
|
||||
|
||||
; The indvar simplification code should ensure that the first PHI in the block
|
||||
; is the canonical one!
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
; This test ensures that alloca instructions in the entry block for an inlined
|
||||
; function are moved to the top of the function they are inlined into.
|
||||
;
|
||||
; RUN: opt -S -inline %s | FileCheck %s
|
||||
; RUN: opt -S -inline < %s | FileCheck %s
|
||||
|
||||
define i32 @func(i32 %i) {
|
||||
%X = alloca i32 ; <i32*> [#uses=1]
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt -basicaa -inline -S -scalarrepl -gvn -instcombine %s | FileCheck %s
|
||||
; RUN: opt -basicaa -inline -S -scalarrepl -gvn -instcombine < %s | FileCheck %s
|
||||
; PR5009
|
||||
|
||||
; CHECK: define i32 @main()
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt -S -basicaa -inline -scalarrepl -instcombine -simplifycfg -instcombine -gvn -globaldce %s | FileCheck %s
|
||||
; RUN: opt -S -basicaa -inline -scalarrepl -instcombine -simplifycfg -instcombine -gvn -globaldce < %s | FileCheck %s
|
||||
target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64"
|
||||
target triple = "x86_64-apple-darwin10.0.0"
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt -basicaa -inline -gvn %s -S -max-cg-scc-iterations=1 | FileCheck %s
|
||||
; RUN: opt -basicaa -inline -gvn -S -max-cg-scc-iterations=1 < %s | FileCheck %s
|
||||
; rdar://6295824 and PR6724
|
||||
|
||||
target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64"
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
; RUN: opt -S -Oz %s | FileCheck %s -check-prefix=OZ
|
||||
; RUN: opt -S -O2 %s | FileCheck %s -check-prefix=O2
|
||||
; RUN: opt -S -Oz < %s | FileCheck %s -check-prefix=OZ
|
||||
; RUN: opt -S -O2 < %s | FileCheck %s -check-prefix=O2
|
||||
|
||||
; The inline threshold for a function with the optsize attribute is currently
|
||||
; the same as the global inline threshold for -Os. Check that the optsize
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt -inline %s -S -o - | FileCheck %s
|
||||
; RUN: opt -inline -S < %s | FileCheck %s
|
||||
|
||||
declare void @use(i8* %a)
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt -inline %s -S -o - | FileCheck %s
|
||||
; RUN: opt -inline -S < %s | FileCheck %s
|
||||
target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128"
|
||||
|
||||
declare void @llvm.lifetime.start(i64, i8*)
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
; This effectively is just peeling off the first iteration of a loop, and the
|
||||
; inliner heuristics are not set up for this.
|
||||
|
||||
; RUN: opt -inline %s -S | FileCheck %s
|
||||
; RUN: opt -inline -S < %s | FileCheck %s
|
||||
|
||||
target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64"
|
||||
target triple = "x86_64-apple-darwin10.3"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt -S -instcombine %s | FileCheck %s
|
||||
; RUN: opt -S -instcombine < %s | FileCheck %s
|
||||
; PR2297
|
||||
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 = "i386-apple-darwin8"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt -instcombine -S %s | FileCheck %s
|
||||
; RUN: opt -instcombine -S < %s | FileCheck %s
|
||||
; PR6486
|
||||
|
||||
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:32:32-n8:16:32"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt -instcombine %s -S -o - | FileCheck %s
|
||||
; RUN: opt -instcombine -S < %s | FileCheck %s
|
||||
; PR7265
|
||||
|
||||
target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt -instcombine -S -o - %s | FileCheck %s
|
||||
; RUN: opt -instcombine -S < %s | FileCheck %s
|
||||
|
||||
; CHECK-NOT: getelementptr
|
||||
; CHECK-NOT: ptrtoint
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt -instcombine %s -S | FileCheck %s
|
||||
; RUN: opt -instcombine -S < %s | FileCheck %s
|
||||
|
||||
; Check that code corresponding to the following C function is
|
||||
; simplified into a single ASR operation:
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt -instcombine -S %s | FileCheck %s
|
||||
; RUN: opt -instcombine -S < %s | FileCheck %s
|
||||
|
||||
define void @test(<4 x float> *%in_ptr, <4 x float> *%out_ptr) {
|
||||
%A = load <4 x float>* %in_ptr, align 16
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt -instcombine %s -S | FileCheck %s
|
||||
; RUN: opt -instcombine -S < %s | FileCheck %s
|
||||
|
||||
;; This tests that the instructions in the entry blocks are sunk into each
|
||||
;; arm of the 'if'.
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt -S -instcombine %s | FileCheck %s
|
||||
; RUN: opt -S -instcombine < %s | FileCheck %s
|
||||
|
||||
define float @test1(float %x) nounwind readnone ssp {
|
||||
entry:
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt -jump-threading -S %s | FileCheck %s
|
||||
; RUN: opt -jump-threading -S < %s | FileCheck %s
|
||||
; rdar://7620633
|
||||
|
||||
target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt -licm -S %s | FileCheck %s
|
||||
; RUN: opt -licm -S < %s | FileCheck %s
|
||||
|
||||
@A = common global [1024 x float] zeroinitializer, align 4
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt -S -loop-rotate %s | FileCheck %s
|
||||
; RUN: opt -S -loop-rotate < %s | FileCheck %s
|
||||
target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64"
|
||||
target triple = "x86_64-apple-darwin10.0.0"
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt -S -loop-rotate %s | FileCheck %s
|
||||
; RUN: opt -S -loop-rotate < %s | FileCheck %s
|
||||
|
||||
declare void @llvm.dbg.declare(metadata, metadata) nounwind readnone
|
||||
declare void @llvm.dbg.value(metadata, i64, metadata) nounwind readnone
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt -S %s -loop-rotate | FileCheck %s
|
||||
; RUN: opt -S -loop-rotate < %s | FileCheck %s
|
||||
target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64"
|
||||
target triple = "x86_64-apple-darwin10.0"
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
; having overlapping live ranges that result in copies. We want the setcc
|
||||
; instruction immediately before the conditional branch.
|
||||
;
|
||||
; RUN: opt -S -loop-reduce %s | FileCheck %s
|
||||
; RUN: opt -S -loop-reduce < %s | FileCheck %s
|
||||
|
||||
define void @foo(float* %D, i32 %E) {
|
||||
entry:
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
; RUN: opt -loop-unswitch -disable-output -stats -info-output-file - < %s | FileCheck --check-prefix=STATS %s
|
||||
; RUN: opt -S -loop-unswitch -verify-loop-info -verify-dom-info %s | FileCheck %s
|
||||
; RUN: opt -S -loop-unswitch -verify-loop-info -verify-dom-info < %s | FileCheck %s
|
||||
|
||||
; STATS: 1 loop-simplify - Number of pre-header or exit blocks inserted
|
||||
; STATS: 2 loop-unswitch - Number of switches unswitched
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
; RUN: opt -loop-unswitch -loop-unswitch-threshold 13 -disable-output -stats -info-output-file - < %s | FileCheck --check-prefix=STATS %s
|
||||
; RUN: opt -S -loop-unswitch -loop-unswitch-threshold 13 -verify-loop-info -verify-dom-info %s | FileCheck %s
|
||||
; RUN: opt -S -loop-unswitch -loop-unswitch-threshold 13 -verify-loop-info -verify-dom-info < %s | FileCheck %s
|
||||
|
||||
; STATS: 1 loop-simplify - Number of pre-header or exit blocks inserted
|
||||
; STATS: 1 loop-unswitch - Number of switches unswitched
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
; RUN: opt -loop-unswitch -loop-unswitch-threshold 1000 -disable-output -stats -info-output-file - < %s | FileCheck --check-prefix=STATS %s
|
||||
; RUN: opt -S -loop-unswitch -loop-unswitch-threshold 1000 -verify-loop-info -verify-dom-info %s | FileCheck %s
|
||||
; RUN: opt -S -loop-unswitch -loop-unswitch-threshold 1000 -verify-loop-info -verify-dom-info < %s | FileCheck %s
|
||||
|
||||
; STATS: 1 loop-simplify - Number of pre-header or exit blocks inserted
|
||||
; STATS: 3 loop-unswitch - Number of switches unswitched
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt -O2 %s -S -o - | FileCheck %s
|
||||
; RUN: opt -O2 -S < %s | FileCheck %s
|
||||
|
||||
target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64"
|
||||
target triple = "x86_64-apple-darwin11.1"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt -O3 -S %s | FileCheck %s
|
||||
; RUN: opt -O3 -S < %s | FileCheck %s
|
||||
; XFAIL: *
|
||||
|
||||
declare i32 @doo(...)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt -O3 -S %s | FileCheck %s
|
||||
; RUN: opt -O3 -S < %s | FileCheck %s
|
||||
|
||||
target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64"
|
||||
target triple = "x86_64-apple-macosx10.6.7"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt -O2 -S %s | FileCheck %s
|
||||
; RUN: opt -O2 -S < %s | FileCheck %s
|
||||
|
||||
; Run global DCE to eliminate unused ctor and dtor.
|
||||
; rdar://9142819
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt -O3 -S -analyze -scalar-evolution %s | FileCheck %s
|
||||
; RUN: opt -O3 -S -analyze -scalar-evolution < %s | FileCheck %s
|
||||
;
|
||||
; This file contains phase ordering tests for scalar evolution.
|
||||
; Test that the standard passes don't obfuscate the IR so scalar evolution can't
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt -ipsccp -S %s | FileCheck %s
|
||||
; RUN: opt -ipsccp -S < %s | FileCheck %s
|
||||
; PR6414
|
||||
target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128"
|
||||
target triple = "x86_64-unknown-linux-gnu"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt -simplifycfg -S %s | FileCheck %s
|
||||
; RUN: opt -simplifycfg -S < %s | FileCheck %s
|
||||
|
||||
%0 = type { i32*, i32* }
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt -S -simplifycfg %s | FileCheck %s
|
||||
; RUN: opt -S -simplifycfg < %s | FileCheck %s
|
||||
|
||||
define i8* @test1(i8* %x, i64 %y) nounwind {
|
||||
entry:
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt -S -simplify-libcalls -instcombine %s | FileCheck %s
|
||||
; RUN: opt -S -simplify-libcalls -instcombine < %s | FileCheck %s
|
||||
target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128"
|
||||
target triple = "x86_64-apple-macosx10.8.0"
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt -tailcallelim %s -S | FileCheck %s
|
||||
; RUN: opt -tailcallelim -S < %s | FileCheck %s
|
||||
; PR615
|
||||
|
||||
declare void @bar(i32*)
|
||||
|
|
Loading…
Reference in New Issue