Skip to content

Commit 29897d2

Browse files
aeubanksmemfrob
authored andcommitted
[test][NewPM] Remove RUN lines using -analyze
Only tests in llvm/test/Analysis. -analyze is legacy PM-specific. This only touches files with `-passes`. I looked through everything and made sure that everything had a new PM equivalent. Reviewed By: MaskRay Differential Revision: https://reviews.llvm.org/D109040
1 parent e35df1a commit 29897d2

File tree

373 files changed

+9
-570
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

373 files changed

+9
-570
lines changed

llvm/test/Analysis/BlockFrequencyInfo/bad_input.ll

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
; RUN: opt < %s -analyze -block-freq -enable-new-pm=0 | FileCheck %s
21
; RUN: opt < %s -passes='print<block-freq>' -disable-output 2>&1 | FileCheck %s
32

43
declare void @g(i32 %x)

llvm/test/Analysis/BlockFrequencyInfo/basic.ll

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
; RUN: opt < %s -analyze -block-freq -enable-new-pm=0 | FileCheck %s
2-
; RUN: opt < %s -analyze -lazy-block-freq -enable-new-pm=0 | FileCheck %s
31
; RUN: opt < %s -passes='print<block-freq>' -disable-output 2>&1 | FileCheck %s
42

53
define i32 @test1(i32 %i, i32* %a) {

llvm/test/Analysis/BlockFrequencyInfo/double_backedge.ll

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
; RUN: opt < %s -analyze -block-freq -enable-new-pm=0 | FileCheck %s
21
; RUN: opt < %s -passes='print<block-freq>' -disable-output 2>&1 | FileCheck %s
32

43
define void @double_backedge(i1 %x) {

llvm/test/Analysis/BlockFrequencyInfo/double_exit.ll

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
; RUN: opt < %s -analyze -block-freq -enable-new-pm=0 | FileCheck %s
21
; RUN: opt < %s -passes='print<block-freq>' -disable-output 2>&1 | FileCheck %s
32

43
; CHECK-LABEL: Printing analysis {{.*}} for function 'double_exit':

llvm/test/Analysis/BlockFrequencyInfo/extremely-likely-loop-successor.ll

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
; RUN: opt < %s -analyze -block-freq -enable-new-pm=0 | FileCheck %s
21
; RUN: opt < %s -passes='print<block-freq>' -disable-output 2>&1 | FileCheck %s
32

43
; PR21622: Check for a crasher when the sum of exits to the same successor of a

llvm/test/Analysis/BlockFrequencyInfo/irreducible.ll

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
; RUN: opt < %s -analyze -block-freq -enable-new-pm=0 | FileCheck %s
21
; RUN: opt < %s -passes='print<block-freq>' -disable-output 2>&1 | FileCheck %s
32

43
; A loop with multiple exits isn't irreducible. It should be handled

llvm/test/Analysis/BlockFrequencyInfo/irreducible_loop_crash.ll

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
; RUN: opt < %s -analyze -block-freq -enable-new-pm=0
21
; RUN: opt < %s -passes='print<block-freq>' -disable-output
32

43
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"

llvm/test/Analysis/BlockFrequencyInfo/irreducible_pgo.ll

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
; RUN: opt < %s -analyze -block-freq -enable-new-pm=0 | FileCheck %s
21
; RUN: opt < %s -passes='print<block-freq>' -disable-output 2>&1 | FileCheck %s
32

43
; Function Attrs: noinline norecurse nounwind readnone uwtable

llvm/test/Analysis/BlockFrequencyInfo/loop_with_branch.ll

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
; RUN: opt < %s -analyze -block-freq -enable-new-pm=0 | FileCheck %s
21
; RUN: opt < %s -passes='print<block-freq>' -disable-output 2>&1 | FileCheck %s
32

43
; CHECK-LABEL: Printing analysis {{.*}} for function 'loop_with_branch':

llvm/test/Analysis/BlockFrequencyInfo/loop_with_invoke.ll

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
; RUN: opt < %s -analyze -block-freq -enable-new-pm=0 | FileCheck %s
21
; RUN: opt < %s -passes='print<block-freq>' -disable-output 2>&1 | FileCheck %s
32

43
; CHECK-LABEL: Printing analysis {{.*}} for function 'loop_with_invoke':

0 commit comments

Comments
 (0)