mirror of
https://github.com/RPCS3/llvm.git
synced 2024-11-26 05:00:39 +00:00
fix a bunch of spurious failures for people whose home directory
is sabre. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81528 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4262b9b6e3
commit
50b957549b
@ -1,5 +1,4 @@
|
|||||||
; RUN: opt %s -sccp -loop-deletion -simplifycfg -S | \
|
; RUN: opt < %s -sccp -loop-deletion -simplifycfg -S | not grep br
|
||||||
; RUN: not grep br
|
|
||||||
|
|
||||||
; No matter how hard you try, sqrt(1.0) is always 1.0. This allows the
|
; No matter how hard you try, sqrt(1.0) is always 1.0. This allows the
|
||||||
; optimizer to delete this loop.
|
; optimizer to delete this loop.
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
; RUN: opt %s -sccp -dce -simplifycfg -S | \
|
; RUN: opt < %s -sccp -dce -simplifycfg -S | not grep br
|
||||||
; RUN: not grep br
|
|
||||||
|
|
||||||
define i32 @test(i32 %param) {
|
define i32 @test(i32 %param) {
|
||||||
entry:
|
entry:
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
; -simplifycfg is not folding blocks if there is a PHI node involved. This
|
; -simplifycfg is not folding blocks if there is a PHI node involved. This
|
||||||
; should be fixed eventually
|
; should be fixed eventually
|
||||||
|
|
||||||
; RUN: opt %s -simplifycfg -S | not grep br
|
; RUN: opt < %s -simplifycfg -S | not grep br
|
||||||
|
|
||||||
define i32 @main(i32 %argc) {
|
define i32 @main(i32 %argc) {
|
||||||
; <label>:0
|
; <label>:0
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
; RUN: opt %s -simplifycfg -S | not grep br
|
; RUN: opt < %s -simplifycfg -S | not grep br
|
||||||
|
|
||||||
define void @foo(i1 %C, i32* %P) {
|
define void @foo(i1 %C, i32* %P) {
|
||||||
br i1 %C, label %T, label %F
|
br i1 %C, label %T, label %F
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
; RUN: opt %s -simplifycfg -S | not grep br
|
; RUN: opt < %s -simplifycfg -S | not grep br
|
||||||
|
|
||||||
define i32 @test(i1 %C, i32 %V1, i32 %V2) {
|
define i32 @test(i1 %C, i32 %V1, i32 %V2) {
|
||||||
entry:
|
entry:
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
; RUN: opt %s -simplifycfg -S | grep select
|
; RUN: opt < %s -simplifycfg -S | grep select
|
||||||
; RUN: opt %s -simplifycfg -S | grep br | count 2
|
; RUN: opt < %s -simplifycfg -S | grep br | count 2
|
||||||
|
|
||||||
define i32 @t2(i32 %a, i32 %b, i32 %c) nounwind {
|
define i32 @t2(i32 %a, i32 %b, i32 %c) nounwind {
|
||||||
entry:
|
entry:
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
; Test CFG simplify removal of branch instructions...
|
; Test CFG simplify removal of branch instructions...
|
||||||
;
|
;
|
||||||
; RUN: opt %s -simplifycfg -S | not grep br
|
; RUN: opt < %s -simplifycfg -S | not grep br
|
||||||
|
|
||||||
define void @test1() {
|
define void @test1() {
|
||||||
br label %BB1
|
br label %BB1
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
; RUN: opt %s -simplifycfg -S | not grep br
|
; RUN: opt < %s -simplifycfg -S | not grep br
|
||||||
|
|
||||||
|
|
||||||
%llvm.dbg.anchor.type = type { i32, i32 }
|
%llvm.dbg.anchor.type = type { i32, i32 }
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
; RUN: opt %s -simplifycfg -S | not grep br
|
; RUN: opt < %s -simplifycfg -S | not grep br
|
||||||
|
|
||||||
declare void @bar(i32)
|
declare void @bar(i32)
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
; RUN: opt %s -simplifycfg -S | not grep br
|
; RUN: opt < %s -simplifycfg -S | not grep br
|
||||||
|
|
||||||
define i32 @test1(i1 %C) {
|
define i32 @test1(i1 %C) {
|
||||||
entry:
|
entry:
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
; RUN: opt %s -simplifycfg -S | not grep br
|
; RUN: opt < %s -simplifycfg -S | not grep br
|
||||||
|
|
||||||
declare void @foo1()
|
declare void @foo1()
|
||||||
|
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
; RUN: opt %s -simplifycfg -S | not grep br
|
; RUN: opt < %s -simplifycfg -S | not grep br
|
||||||
; END.
|
|
||||||
|
|
||||||
|
|
||||||
%llvm.dbg.anchor.type = type { i32, i32 }
|
%llvm.dbg.anchor.type = type { i32, i32 }
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
; RUN: opt %s -simplifycfg -S | not grep br
|
; RUN: opt < %s -simplifycfg -S | not grep br
|
||||||
; END.
|
|
||||||
|
|
||||||
define i1 @_ZN4llvm11SetCondInst7classofEPKNS_11InstructionE({ i32, i32 }* %I) {
|
define i1 @_ZN4llvm11SetCondInst7classofEPKNS_11InstructionE({ i32, i32 }* %I) {
|
||||||
entry:
|
entry:
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
; RUN: opt %s -simplifycfg -S | not grep br
|
; RUN: opt < %s -simplifycfg -S | not grep br
|
||||||
|
|
||||||
%llvm.dbg.anchor.type = type { i32, i32 }
|
%llvm.dbg.anchor.type = type { i32, i32 }
|
||||||
%llvm.dbg.compile_unit.type = type { i32, { }*, i32, i8*, i8*, i8*, i1, i1, i8* }
|
%llvm.dbg.compile_unit.type = type { i32, { }*, i32, i8*, i8*, i8*, i1, i1, i8* }
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
; RUN: opt %s -simplifycfg -S | not grep br
|
; RUN: opt < %s -simplifycfg -S | not grep br
|
||||||
|
|
||||||
define i1 @qux(i8* %m, i8* %n, i8* %o, i8* %p) nounwind {
|
define i1 @qux(i8* %m, i8* %n, i8* %o, i8* %p) nounwind {
|
||||||
entry:
|
entry:
|
||||||
|
Loading…
Reference in New Issue
Block a user