[llvm] [MachineOutliner] Add skipModule call for opt-bisect-limit. (PR #128836)
Craig Topper via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 25 23:06:24 PST 2025
https://github.com/topperc created https://github.com/llvm/llvm-project/pull/128836
None
>From cadf9e9ff136b933149c854254180309d1b1956c Mon Sep 17 00:00:00 2001
From: Craig Topper <craig.topper at sifive.com>
Date: Tue, 25 Feb 2025 23:00:59 -0800
Subject: [PATCH] [MachineOutliner] Add skipModule call for opt-bisect-limit.
---
llvm/lib/CodeGen/MachineOutliner.cpp | 3 +++
1 file changed, 3 insertions(+)
diff --git a/llvm/lib/CodeGen/MachineOutliner.cpp b/llvm/lib/CodeGen/MachineOutliner.cpp
index e3fe9494acef8..ba125d9fee566 100644
--- a/llvm/lib/CodeGen/MachineOutliner.cpp
+++ b/llvm/lib/CodeGen/MachineOutliner.cpp
@@ -1375,6 +1375,9 @@ void MachineOutliner::emitOutlinedHashTree(Module &M) {
}
bool MachineOutliner::runOnModule(Module &M) {
+ if (skipModule(M))
+ return false;
+
// Check if there's anything in the module. If it's empty, then there's
// nothing to outline.
if (M.empty())
More information about the llvm-commits
mailing list