[PATCH] D58734: [AArch64][GlobalISel] Add isel support for G_UADDO on s32s and s64s
Jessica Paquette via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 27 13:00:01 PST 2019
paquette marked 2 inline comments as done.
paquette added inline comments.
================
Comment at: lib/Target/AArch64/AArch64InstructionSelector.cpp:1325-1326
+
+ // TODO: Support immediate adds.
+ if (I.getOperand(3).isImm()) {
+ LLVM_DEBUG(
----------------
arsenm wrote:
> This is illegal, this can only be a register
Oh, whoops, I was just looking at ADDS. You're right, I'll change that.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D58734/new/
https://reviews.llvm.org/D58734
More information about the llvm-commits
mailing list