mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +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:
parent
73773ce844
commit
8ec421c255
@ -320,7 +320,7 @@ bool TailCallElim::markTails(Function &F, bool &AllCallsAreTailCalls) {
|
||||
if (SafeToTail) {
|
||||
F.getContext().emitOptimizationRemark(
|
||||
"tailcallelim", F, CI->getDebugLoc(),
|
||||
"found readnone tail call candidate");
|
||||
"marked this readnone call a tail call candidate");
|
||||
CI->setTailCall();
|
||||
Modified = true;
|
||||
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
|
||||
// escape point wouldn't have been put into DeferredTails.
|
||||
F.getContext().emitOptimizationRemark(
|
||||
"tailcallelim", F, CI->getDebugLoc(), "found tail call candidate");
|
||||
"tailcallelim", F, CI->getDebugLoc(),
|
||||
"marked this call a tail call candidate");
|
||||
CI->setTailCall();
|
||||
Modified = true;
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user