[llvm] r352138 - Try to address Windows bot failure after r352080

Vedant Kumar via llvm-commits llvm-commits at lists.llvm.org
Thu Jan 24 16:15:16 PST 2019


Author: vedantk
Date: Thu Jan 24 16:15:16 2019
New Revision: 352138

URL: http://llvm.org/viewvc/llvm-project?rev=352138&view=rev
Log:
Try to address Windows bot failure after r352080

See the bot error message reported in https://reviews.llvm.org/D57082.

Avoid trying to match full class names in -debug-pass-manager output,
because they aren't portable.

Modified:
    llvm/trunk/test/Other/opt-hot-cold-split.ll

Modified: llvm/trunk/test/Other/opt-hot-cold-split.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Other/opt-hot-cold-split.ll?rev=352138&r1=352137&r2=352138&view=diff
==============================================================================
--- llvm/trunk/test/Other/opt-hot-cold-split.ll (original)
+++ llvm/trunk/test/Other/opt-hot-cold-split.ll Thu Jan 24 16:15:16 2019
@@ -12,13 +12,11 @@
 ; DEFAULT-Os: Combine redundant instructions
 
 ; LTO-PRELINK-Os-LABEL: Starting llvm::Module pass manager run.
-; LTO-PRELINK-Os: Running pass: ModuleToFunctionPassAdaptor<llvm::PromotePass>
+; LTO-PRELINK-Os: Running pass: {{.*}}PromotePass
 ; LTO-PRELINK-Os: Running pass: HotColdSplittingPass
-; LTO-PRELINK-Os: Running pass: ModuleToFunctionPassAdaptor<llvm::PassManager<llvm::Function> >
 
 ; THINLTO-PRELINK-Os-LABEL: Running analysis: PassInstrumentationAnalysis
-; THINLTO-PRELINK-Os: Running pass: ModuleToFunctionPassAdaptor<llvm::PromotePass>
+; THINLTO-PRELINK-Os: Running pass: {{.*}}PromotePass
 ; THINLTO-PRELINK-Os: Running pass: HotColdSplittingPass
-; THINLTO-PRELINK-Os: Running pass: ModuleToFunctionPassAdaptor<llvm::PassManager<llvm::Function> >
 
 ; THINLTO-POSTLINK-Os-NOT: HotColdSplitting




More information about the llvm-commits mailing list