Skip to content

Commit

Permalink
Show IR verification failures. (#46062)
Browse files Browse the repository at this point in the history
  • Loading branch information
maleadt committed Jul 16, 2022
1 parent 2024a7f commit 7261c65
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/llvm-cpufeatures.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ bool lowerCPUFeatures(Module &M)
for (auto I: Materialized) {
I->eraseFromParent();
}
assert(!verifyModule(M));
assert(!verifyModule(M, &errs()));
return true;
} else {
return false;
Expand Down
2 changes: 1 addition & 1 deletion src/llvm-multiversioning.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1135,7 +1135,7 @@ static bool runMultiVersioning(Module &M, function_ref<LoopInfo&(Function&)> Get
// and collected all the shared/target-specific relocations.
clone.emit_metadata();

assert(!verifyModule(M));
assert(!verifyModule(M, &errs()));

return true;
}
Expand Down
2 changes: 1 addition & 1 deletion src/llvm-simdloop.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ static bool markLoopInfo(Module &M, Function *marker, function_ref<LoopInfo &(Fu
I->deleteValue();
marker->eraseFromParent();

assert(!verifyModule(M));
assert(!verifyModule(M, &errs()));
return Changed;
}

Expand Down

2 comments on commit 7261c65

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Executing the daily package evaluation, I will reply here when finished:

@nanosoldier runtests(ALL, isdaily = true)

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Your package evaluation job has completed - possible new issues were detected. A full report can be found here.

Please sign in to comment.