From 692c78ad0ea8404a684adec8c228c928cdd93951 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. llvm-svn: 275538 --- 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();