We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0c0957 commit 15d008fCopy full SHA for 15d008f
bolt/lib/Passes/InsertNegateRAStatePass.cpp
@@ -20,13 +20,7 @@ void InsertNegateRAState::runOnFunction(BinaryFunction &BF) {
20
21
if (BF.getState() != BinaryFunction::State::CFG &&
22
BF.getState() != BinaryFunction::State::CFG_Finalized) {
23
- BC.errs() << "BOLT-WARNING: No CFG for " << BF.getPrintName()
24
- << " in InsertNegateRAStatePass\n";
25
- return;
26
- }
27
-
28
- if (BF.getState() == BinaryFunction::State::CFG_Finalized) {
29
- BC.errs() << "BOLT-WARNING: CFG finalized for " << BF.getPrintName()
+ BC.outs() << "BOLT-INFO: No CFG for " << BF.getPrintName()
30
<< " in InsertNegateRAStatePass\n";
31
return;
32
}
0 commit comments