[PATCH] D93659: [AIX][XCOFF] emit vector info of traceback table.

Jason Liu via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Jun 4 09:18:02 PDT 2021


jasonliu added inline comments.


================
Comment at: llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.cpp:138-141
+    if (Elt == FixedType && !hasVectorParms() && Bits > 31)
+      break;
+    if ((Elt != FixedType || hasVectorParms()) && Bits > 30)
+      break;
----------------
Could we combine the above two if statement?


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D93659



More information about the llvm-commits mailing list