mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-03 11:24:18 +00:00
Improve wording to make it sounds more like a change than an analysis.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208370 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -320,7 +320,7 @@ bool TailCallElim::markTails(Function &F, bool &AllCallsAreTailCalls) {
|
|||||||
if (SafeToTail) {
|
if (SafeToTail) {
|
||||||
F.getContext().emitOptimizationRemark(
|
F.getContext().emitOptimizationRemark(
|
||||||
"tailcallelim", F, CI->getDebugLoc(),
|
"tailcallelim", F, CI->getDebugLoc(),
|
||||||
"found readnone tail call candidate");
|
"marked this readnone call a tail call candidate");
|
||||||
CI->setTailCall();
|
CI->setTailCall();
|
||||||
Modified = true;
|
Modified = true;
|
||||||
continue;
|
continue;
|
||||||
@ -366,7 +366,8 @@ bool TailCallElim::markTails(Function &F, bool &AllCallsAreTailCalls) {
|
|||||||
// If the escape point was part way through the block, calls after the
|
// If the escape point was part way through the block, calls after the
|
||||||
// escape point wouldn't have been put into DeferredTails.
|
// escape point wouldn't have been put into DeferredTails.
|
||||||
F.getContext().emitOptimizationRemark(
|
F.getContext().emitOptimizationRemark(
|
||||||
"tailcallelim", F, CI->getDebugLoc(), "found tail call candidate");
|
"tailcallelim", F, CI->getDebugLoc(),
|
||||||
|
"marked this call a tail call candidate");
|
||||||
CI->setTailCall();
|
CI->setTailCall();
|
||||||
Modified = true;
|
Modified = true;
|
||||||
} else {
|
} else {
|
||||||
|
Reference in New Issue
Block a user