summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJakob Stoklund Olesen <stoklund@2pi.dk>2011-09-25 16:46:08 +0000
committerJakob Stoklund Olesen <stoklund@2pi.dk>2011-09-25 16:46:08 +0000
commit74e2d6ea66a9289fc3c00583f3c2b2abd84e1866 (patch)
tree876bbcc8a68636e2fed744f152e9e22170527979 /include
parentfb96574fca53631bb643307c4f1fa8f808d45fc1 (diff)
downloadllvm-74e2d6ea66a9289fc3c00583f3c2b2abd84e1866.tar.gz
llvm-74e2d6ea66a9289fc3c00583f3c2b2abd84e1866.tar.bz2
llvm-74e2d6ea66a9289fc3c00583f3c2b2abd84e1866.tar.xz
Clean up code after renaming LowerSubregs -> ExpandPostRAPseudos.
No functional change intended. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@140470 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/Passes.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/include/llvm/CodeGen/Passes.h b/include/llvm/CodeGen/Passes.h
index 7b2f36203b..82b384461a 100644
--- a/include/llvm/CodeGen/Passes.h
+++ b/include/llvm/CodeGen/Passes.h
@@ -132,11 +132,10 @@ namespace llvm {
///
FunctionPass *createPrologEpilogCodeInserter();
- /// LowerSubregs Pass - This pass lowers subregs to register-register copies
- /// which yields suboptimal, but correct code if the register allocator
- /// cannot coalesce all subreg operations during allocation.
+ /// ExpandPostRAPseudos Pass - This pass expands pseudo instructions after
+ /// register allocation.
///
- FunctionPass *createLowerSubregsPass();
+ FunctionPass *createExpandPostRAPseudosPass();
/// createPostRAScheduler - This pass performs post register allocation
/// scheduling.