[llvm] r216622 - [FastISel][AArch64] Fix a comment in my previous commit (r216617).
Juergen Ributzka
juergen at apple.com
Wed Aug 27 14:40:51 PDT 2014
Author: ributzka
Date: Wed Aug 27 16:40:50 2014
New Revision: 216622
URL: http://llvm.org/viewvc/llvm-project?rev=216622&view=rev
Log:
[FastISel][AArch64] Fix a comment in my previous commit (r216617).
Modified:
llvm/trunk/lib/Target/AArch64/AArch64FastISel.cpp
Modified: llvm/trunk/lib/Target/AArch64/AArch64FastISel.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/AArch64/AArch64FastISel.cpp?rev=216622&r1=216621&r2=216622&view=diff
==============================================================================
--- llvm/trunk/lib/Target/AArch64/AArch64FastISel.cpp (original)
+++ llvm/trunk/lib/Target/AArch64/AArch64FastISel.cpp Wed Aug 27 16:40:50 2014
@@ -1449,7 +1449,7 @@ bool AArch64FastISel::SelectStore(const
return false;
// Get the value to be stored into a register. Use the zero register directly
- // when possible to avoid an unnecessary copy and a wasted register at -O0.
+ // when possible to avoid an unnecessary copy and a wasted register.
unsigned SrcReg = 0;
if (const auto *CI = dyn_cast<ConstantInt>(Op0)) {
if (CI->isZero())
More information about the llvm-commits
mailing list