Details
Diff Detail
- Repository
- rL LLVM
- Build Status
Buildable 22731 Build 22731: arc lint + arc unit
Event Timeline
lib/Transforms/Instrumentation/ControlHeightReduction.cpp | ||
---|---|---|
1166 | Can you make the missed reason string clearer? | |
1202 | Similarly here. | |
1328 | You can pass the argument to the ORE object with ore::NV type: OptimizationMarkMissed ORE(DEBUG_TYPE, ....); | |
1827 | use ore::NV to pass argument. | |
2026 | The message already includes the module name, so there is no need to do it here. Also the function name can be passed as NV: ORE<< ore::NV("Function", &F) << "Reduced .... by " << ore::NV("NumBranchesDelta", Stats.NumBranchesDelta) << " (static ) ...." ... |
Can you make the missed reason string clearer?