[llvm] 102c22c - [FatLTO] Disable analysis verification in pipeline test (NFC)
Nikita Popov via llvm-commits
llvm-commits at lists.llvm.org
Tue Jul 1 01:47:32 PDT 2025
Author: Nikita Popov
Date: 2025-07-01T10:47:23+02:00
New Revision: 102c22cb2c100808c383573f0b7fc74d1537487b
URL: https://github.com/llvm/llvm-project/commit/102c22cb2c100808c383573f0b7fc74d1537487b
DIFF: https://github.com/llvm/llvm-project/commit/102c22cb2c100808c383573f0b7fc74d1537487b.diff
LOG: [FatLTO] Disable analysis verification in pipeline test (NFC)
To fix test failure with expensive checks reports at:
https://github.com/llvm/llvm-project/pull/146048#issuecomment-3022421122
Added:
Modified:
llvm/test/Other/fatlto.ll
Removed:
################################################################################
diff --git a/llvm/test/Other/fatlto.ll b/llvm/test/Other/fatlto.ll
index 0201dc25fa870..2f7ce4bf817a8 100644
--- a/llvm/test/Other/fatlto.ll
+++ b/llvm/test/Other/fatlto.ll
@@ -1,5 +1,5 @@
-; RUN: opt -debug-pass-manager -passes='fatlto-pre-link<O2>' -disable-output %s 2>&1 | FileCheck %s
-; RUN: opt -debug-pass-manager -passes='fatlto-pre-link<O2;thinlto>' -disable-output %s 2>&1 | FileCheck %s --check-prefixes=CHECK,THINLTO
+; RUN: opt -debug-pass-manager -passes='fatlto-pre-link<O2>' -verify-analysis-invalidation=0 -disable-output %s 2>&1 | FileCheck %s
+; RUN: opt -debug-pass-manager -passes='fatlto-pre-link<O2;thinlto>' -verify-analysis-invalidation=0 -disable-output %s 2>&1 | FileCheck %s --check-prefixes=CHECK,THINLTO
; CHECK: Running pass: EmbedBitcodePass on [module]
; THINLTO: Running analysis: ModuleSummaryIndexAnalysis on [module]
More information about the llvm-commits
mailing list