nickdesaulniers added inline comments.

================
Comment at: llvm/lib/Target/ARM/ARMISelLowering.cpp:3485
+      cast<ConstantSDNode>(
+          Op.getOperand(Op.getOperand(0).getValueType() == MVT::Other ? 1 : 0))
+          ->getZExtValue();
----------------
`Op.getOperand(0).getValueType() == MVT::Other ? 1 : 0` could be replaced with 
`Op.getOperand(0).getValueType() == MVT::Other`


================
Comment at: llvm/lib/Target/ARM/ARMISelLowering.cpp:3487
+          ->getZExtValue();
+  SDLoc dl(Op);
+  switch (IntNo) {
----------------
Why construct `dl` if we don't use it in the default case, or under certain 
conditions below? Maybe move the definition closer to its use below. Though I 
see temporary `SDLoc(Op)` below, which should be sufficient (so you can remove 
`dl`).


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D65019



_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to