[llvm] 8e289e4 - [ARM] Fix comment typo

Oliver Stannard via llvm-commits llvm-commits at lists.llvm.org
Fri Oct 25 01:34:51 PDT 2024


Author: Oliver Stannard
Date: 2024-10-25T09:34:07+01:00
New Revision: 8e289e4fa60eb59fc12c39b88987d4956c1d38ea

URL: https://github.com/llvm/llvm-project/commit/8e289e4fa60eb59fc12c39b88987d4956c1d38ea
DIFF: https://github.com/llvm/llvm-project/commit/8e289e4fa60eb59fc12c39b88987d4956c1d38ea.diff

LOG: [ARM] Fix comment typo

Added: 
    

Modified: 
    llvm/lib/Target/ARM/ARMISelLowering.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Target/ARM/ARMISelLowering.cpp b/llvm/lib/Target/ARM/ARMISelLowering.cpp
index a4f01e55f53c1c..76350f8022e632 100644
--- a/llvm/lib/Target/ARM/ARMISelLowering.cpp
+++ b/llvm/lib/Target/ARM/ARMISelLowering.cpp
@@ -2408,8 +2408,8 @@ ARMTargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
     isTailCall = false;
 
   // For both the non-secure calls and the returns from a CMSE entry function,
-  // the function needs to do some extra work afte r the call, or before the
-  // return, respectively, thus it cannot end with atail call
+  // the function needs to do some extra work after the call, or before the
+  // return, respectively, thus it cannot end with a tail call
   if (isCmseNSCall || AFI->isCmseNSEntryFunction())
     isTailCall = false;
 


        


More information about the llvm-commits mailing list