[PATCH] D62823: [AIX] Implement call lowering with parameters could pass onto GPRs

Jason Liu via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Jun 4 10:54:51 PDT 2019


jasonliu marked an inline comment as done.
jasonliu added inline comments.


================
Comment at: llvm/lib/Target/PowerPC/PPCISelLowering.cpp:6631
+
+  const unsigned NumGPRs = array_lengthof(GPR_32);
+  const MCPhysReg *GPR = isPPC64 ? GPR_64 : GPR_32;
----------------
hubert.reinterpretcast wrote:
> This looks fragile.
Got it. How about now?


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

https://reviews.llvm.org/D62823





More information about the llvm-commits mailing list