OSDN Git Service

Fix pass declaration order /NFC
authorXinliang David Li <davidxl@google.com>
Sun, 5 Jun 2016 05:15:45 +0000 (05:15 +0000)
committerXinliang David Li <davidxl@google.com>
Sun, 5 Jun 2016 05:15:45 +0000 (05:15 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@271824 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Passes/PassRegistry.def

index 398da32..e95e197 100644 (file)
@@ -44,8 +44,8 @@ MODULE_PASS("globaldce", GlobalDCEPass())
 MODULE_PASS("globalopt", GlobalOptPass())
 MODULE_PASS("inferattrs", InferFunctionAttrsPass())
 MODULE_PASS("insert-gcov-profiling", GCOVProfilerPass())
-MODULE_PASS("internalize", InternalizePass())
 MODULE_PASS("instrprof", InstrProfiling())
+MODULE_PASS("internalize", InternalizePass())
 MODULE_PASS("invalidate<all>", InvalidateAllAnalysesPass())
 MODULE_PASS("ipsccp", IPSCCPPass())
 MODULE_PASS("no-op-module", NoOpModulePass())