[llvm-branch-commits] [llvm] 8791949 - [test] Pin some tests to legacy PM
Arthur Eubanks via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Sat Dec 26 13:51:54 PST 2020
Author: Arthur Eubanks
Date: 2020-12-26T13:46:02-08:00
New Revision: 8791949f55b151ebc88a1bbb4a885809689031ee
URL: https://github.com/llvm/llvm-project/commit/8791949f55b151ebc88a1bbb4a885809689031ee
DIFF: https://github.com/llvm/llvm-project/commit/8791949f55b151ebc88a1bbb4a885809689031ee.diff
LOG: [test] Pin some tests to legacy PM
These all have NPM RUN lines.
Added:
Modified:
llvm/test/Analysis/BranchProbabilityInfo/deopt-invoke.ll
llvm/test/Analysis/BranchProbabilityInfo/unreachable.ll
llvm/test/Transforms/Coroutines/coro-inline.ll
Removed:
################################################################################
diff --git a/llvm/test/Analysis/BranchProbabilityInfo/deopt-invoke.ll b/llvm/test/Analysis/BranchProbabilityInfo/deopt-invoke.ll
index bea32bbe5979..0a552c6dc4d7 100644
--- a/llvm/test/Analysis/BranchProbabilityInfo/deopt-invoke.ll
+++ b/llvm/test/Analysis/BranchProbabilityInfo/deopt-invoke.ll
@@ -1,4 +1,4 @@
-; RUN: opt -analyze -branch-prob < %s | FileCheck %s
+; RUN: opt -analyze -branch-prob < %s -enable-new-pm=0 | FileCheck %s
; RUN: opt < %s -passes='print<branch-prob>' -disable-output 2>&1 | FileCheck %s
declare i32* @"personality_function"() #1
diff --git a/llvm/test/Analysis/BranchProbabilityInfo/unreachable.ll b/llvm/test/Analysis/BranchProbabilityInfo/unreachable.ll
index 7ebdba2168ec..e7c9e0b447be 100644
--- a/llvm/test/Analysis/BranchProbabilityInfo/unreachable.ll
+++ b/llvm/test/Analysis/BranchProbabilityInfo/unreachable.ll
@@ -1,4 +1,4 @@
-; RUN: opt -analyze -branch-prob < %s | FileCheck %s
+; RUN: opt -analyze -branch-prob < %s -enable-new-pm=0 | FileCheck %s
; RUN: opt < %s -passes='print<branch-prob>' -disable-output 2>&1 | FileCheck %s
declare void @bar() cold
diff --git a/llvm/test/Transforms/Coroutines/coro-inline.ll b/llvm/test/Transforms/Coroutines/coro-inline.ll
index 2cc679a0127d..5142dd7e45cf 100644
--- a/llvm/test/Transforms/Coroutines/coro-inline.ll
+++ b/llvm/test/Transforms/Coroutines/coro-inline.ll
@@ -1,4 +1,4 @@
-; RUN: opt < %s -always-inline -barrier -coro-split -S | FileCheck %s
+; RUN: opt < %s -always-inline -barrier -coro-split -S -enable-new-pm=0 | FileCheck %s
; RUN: opt < %s -passes='always-inline,cgscc(coro-split)' -S | FileCheck %s
; RUN: opt < %s -sample-profile-file=%S/Inputs/sample.text.prof -pgo-kind=pgo-sample-use-pipeline -sample-profile -coro-split -disable-inlining=true -S | FileCheck %s
; RUN: opt < %s -sample-profile-file=%S/Inputs/sample.text.prof -pgo-kind=pgo-sample-use-pipeline -passes='sample-profile,cgscc(coro-split)' -disable-inlining=true -S | FileCheck %s
More information about the llvm-branch-commits
mailing list