[llvm] r342538 - Verify commit access in fixing typo
Calixte Denizet via llvm-commits
llvm-commits at lists.llvm.org
Wed Sep 19 04:26:21 PDT 2018
Author: calixte
Date: Wed Sep 19 04:26:20 2018
New Revision: 342538
URL: http://llvm.org/viewvc/llvm-project?rev=342538&view=rev
Log:
Verify commit access in fixing typo
Modified:
llvm/trunk/lib/Target/AArch64/AArch64Subtarget.cpp
Modified: llvm/trunk/lib/Target/AArch64/AArch64Subtarget.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/AArch64/AArch64Subtarget.cpp?rev=342538&r1=342537&r2=342538&view=diff
==============================================================================
--- llvm/trunk/lib/Target/AArch64/AArch64Subtarget.cpp (original)
+++ llvm/trunk/lib/Target/AArch64/AArch64Subtarget.cpp Wed Sep 19 04:26:20 2018
@@ -273,7 +273,7 @@ void AArch64Subtarget::mirFileLoaded(Mac
// We usually compute max call frame size after ISel. Do the computation now
// if the .mir file didn't specify it. Note that this will probably give you
// bogus values after PEI has eliminated the callframe setup/destroy pseudo
- // instructions, specify explicitely if you need it to be correct.
+ // instructions, specify explicitly if you need it to be correct.
MachineFrameInfo &MFI = MF.getFrameInfo();
if (!MFI.isMaxCallFrameSizeComputed())
MFI.computeMaxCallFrameSize(MF);
More information about the llvm-commits
mailing list