From 2c4b9ea2822ebc4f050119d8d8115425d9032382 Mon Sep 17 00:00:00 2001 From: Juergen Ributzka Date: Wed, 27 Aug 2014 21:40:50 +0000 Subject: [PATCH] [FastISel][AArch64] Fix a comment in my previous commit (r216617). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@216622 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/AArch64/AArch64FastISel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Target/AArch64/AArch64FastISel.cpp b/lib/Target/AArch64/AArch64FastISel.cpp index 2faa1398064..df294bdc149 100644 --- a/lib/Target/AArch64/AArch64FastISel.cpp +++ b/lib/Target/AArch64/AArch64FastISel.cpp @@ -1449,7 +1449,7 @@ bool AArch64FastISel::SelectStore(const Instruction *I) { 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(Op0)) { if (CI->isZero())