[PATCH] D25482: [PPC] Allow two post RA schedulers to be in the pipeline and select one depending on the Machine Function's subtarget

Ehsan Amiri via llvm-commits llvm-commits at lists.llvm.org
Mon Oct 31 16:03:53 PDT 2016


amehsan added inline comments.


================
Comment at: lib/Target/PowerPC/PPCTargetMachine.cpp:447
+        auto Direc = this->TM->getSubtarget<PPCSubtarget>(F).getDarwinDirective();
+        return Direc < PPC::DIR_PWR9 && Direc > PPC::DIR_32;
+      }));
----------------
I need to make sure that the lower bound here (PPC::DIR_32) is correct.


https://reviews.llvm.org/D25482





More information about the llvm-commits mailing list