Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions llvm/lib/CodeGen/MachineOutliner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand Down
Loading