[PATCH] D84534: [AIX] Static init frontend recovery and backend support

Xiangling Liao via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Aug 4 12:52:42 PDT 2020


Xiangling_L added inline comments.


================
Comment at: llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp:1865
+    if (isSpecialLLVMGlobalArrayForStaticInit(&G)) {
+      if (GlobalUniqueModuleId.empty()) {
+        GlobalUniqueModuleId = getUniqueModuleId(&M);
----------------
jasonliu wrote:
> We will need to move this part of the if statement to the overrided `emitXXStructorList` as well. (If we think overriding `emitXXStructorList` and calling `emitSpecialLLVMGlobal ` directly is a good idea.)
`getUniqueModuleId` takes `Module` as a parameter, if we want to invoke this function inside of `emitXXStructorList` through `emitSpecialLLVMGlobal`, we have to change the interface of them, which seems not ideal.


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

https://reviews.llvm.org/D84534



More information about the llvm-commits mailing list