From c30ebec2df5576f6f9b728b4584708f82a6f3184 Mon Sep 17 00:00:00 2001 From: James Molloy Date: Fri, 15 Jul 2016 07:57:35 +0000 Subject: [PATCH] [ARM] Followup to r275537 addressing review comments Address Chad's comment in D22216 which I missed due to tunnel vision on the "LGTM" comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@275538 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/ARM/ARMISelLowering.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Target/ARM/ARMISelLowering.cpp b/lib/Target/ARM/ARMISelLowering.cpp index 1542934aa77..12ed20c2ea4 100644 --- a/lib/Target/ARM/ARMISelLowering.cpp +++ b/lib/Target/ARM/ARMISelLowering.cpp @@ -1849,8 +1849,8 @@ ARMTargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI, false, false, 0); } } else if (isa(Callee)) { - // If we're optimizing for minimum size and the function is called many - // times in this block, we can improve codesize by calling indirectly + // If we're optimizing for minimum size and the function is called three or + // more times in this block, we can improve codesize by calling indirectly // as BLXr has a 16-bit encoding. auto *GV = cast(Callee)->getGlobal(); auto *BB = CLI.CS->getParent(); -- 2.49.0