[PATCH] D85394: [NewPM][GuardWidening] Fix loop guard widening tests under NPM
Arthur Eubanks via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Aug 6 15:33:20 PDT 2020
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG039fb7f68af9: [NewPM][GuardWidening] Fix loop guard widening tests under NPM (authored by aeubanks).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D85394/new/
https://reviews.llvm.org/D85394
Files:
llvm/test/Transforms/GuardWidening/basic-loop.ll
llvm/test/Transforms/GuardWidening/loop-schedule.ll
Index: llvm/test/Transforms/GuardWidening/loop-schedule.ll
===================================================================
--- llvm/test/Transforms/GuardWidening/loop-schedule.ll
+++ llvm/test/Transforms/GuardWidening/loop-schedule.ll
@@ -1,12 +1,17 @@
-; RUN: opt -S -licm -loop-guard-widening -licm -debug-pass=Structure < %s 2>&1 | FileCheck %s
+; RUN: opt -S -licm -loop-guard-widening -licm -debug-pass=Structure -enable-new-pm=0 < %s 2>&1 | FileCheck %s --check-prefixes=LPM,CHECK
+; RUN: opt -S -passes='licm,guard-widening,licm' -debug-pass-manager < %s 2>&1 | FileCheck %s --check-prefixes=NPM,CHECK
; Main point of this test is to check the scheduling -- there should be
; no analysis passes needed between LICM and LoopGuardWidening
-; CHECK: Loop Pass Manager
-; CHECK: Loop Invariant Code Motion
-; CHECK: Widen guards (within a single loop, as a loop pass)
-; CHECK: Loop Invariant Code Motion
+; LPM: Loop Pass Manager
+; LPM: Loop Invariant Code Motion
+; LPM: Widen guards (within a single loop, as a loop pass)
+; LPM: Loop Invariant Code Motion
+
+; NPM: LICMPass
+; NPM-NEXT: GuardWideningPass
+; NPM-NEXT: LICMPass
declare void @llvm.experimental.guard(i1,...)
Index: llvm/test/Transforms/GuardWidening/basic-loop.ll
===================================================================
--- llvm/test/Transforms/GuardWidening/basic-loop.ll
+++ llvm/test/Transforms/GuardWidening/basic-loop.ll
@@ -1,5 +1,5 @@
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
-; RUN: opt -S -loop-guard-widening < %s | FileCheck %s
+; RUN: opt -S -loop-guard-widening -enable-new-pm=0 < %s | FileCheck %s
; RUN: opt -S -passes="loop(guard-widening)" < %s | FileCheck %s
declare void @llvm.experimental.guard(i1,...)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D85394.283750.patch
Type: text/x-patch
Size: 1783 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200806/2a0761b8/attachment.bin>
More information about the llvm-commits
mailing list