[PATCH] D140569: [AVR] Custom lower 32-bit shift instructions

Ben Shi via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sat Dec 31 20:11:29 PST 2022


benshi001 added inline comments.


================
Comment at: llvm/lib/Target/AVR/AVRISelLowering.cpp:1845
+  bool ShiftLeft = Opc == ISD::SHL;
+  bool ArithmeticShift = Opc == ISD::SRA;
+
----------------
` const bool ArithmeticShift = Opc == ISD::SRA;`


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D140569/new/

https://reviews.llvm.org/D140569



More information about the llvm-commits mailing list