[PATCH] D20769: [IPRA] Interprocedural Register Allocation

Mehdi AMINI via llvm-commits llvm-commits at lists.llvm.org
Sun May 29 23:18:41 PDT 2016


mehdi_amini added inline comments.

================
Comment at: lib/CodeGen/TargetPassConfig.cpp:514
@@ +513,3 @@
+namespace {
+class DummyCGSCCPass : public CallGraphSCCPass {
+public:
----------------
Looks like we'll need a home for this pass, can't really leave it there. I'm not sure where to put it yet.

================
Comment at: lib/CodeGen/TargetPassConfig.cpp:529
@@ +528,3 @@
+INITIALIZE_PASS_DEPENDENCY(CallGraphWrapperPass)
+INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
+INITIALIZE_PASS_END(DummyCGSCCPass, "DummyCGSCCPass", "DummyCGSCCPass", false,
----------------
Are these dependency required?


http://reviews.llvm.org/D20769





More information about the llvm-commits mailing list