[PATCH] D21826: AArch64: Change modeling of zero cycle zeroing.
Matthias Braun via llvm-commits
llvm-commits at lists.llvm.org
Wed Jun 29 13:45:39 PDT 2016
MatzeB marked an inline comment as done.
================
Comment at: lib/Target/AArch64/AArch64AsmPrinter.cpp:432
@@ +431,3 @@
+ assert(AArch64::D0 <= DestReg && DestReg <= AArch64::D31);
+ DestReg = AArch64::Q0 + (DestReg - AArch64::Q0);
+ }
----------------
mcrosier wrote:
> rovka wrote:
> > Shouldn't this be -AArch64::D0?
> Yes, I believe @rovka is correct.
Indeed, good catch.
Repository:
rL LLVM
http://reviews.llvm.org/D21826
More information about the llvm-commits
mailing list