aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-11-16 21:02:37 +0000
committerDan Gohman <gohman@apple.com>2010-11-16 21:02:37 +0000
commit668ac2fdae69ed358ecf690d6a07428e5a9ee2f7 (patch)
tree9661cd127b92dbd1c3b4c4091ec46b178f155aac /include/llvm/CodeGen
parent342e39f9e55d3f4465748c9ab84bf27df7a92478 (diff)
Split pseudo-instruction expansion into a separate pass, to make it
easier to debug, and to avoid complications when the CFG changes in the middle of the instruction selection process. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@119382 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen')
-rw-r--r--include/llvm/CodeGen/Passes.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/llvm/CodeGen/Passes.h b/include/llvm/CodeGen/Passes.h
index bbedabd407..7345f15dd1 100644
--- a/include/llvm/CodeGen/Passes.h
+++ b/include/llvm/CodeGen/Passes.h
@@ -213,6 +213,10 @@ namespace llvm {
/// addressing.
FunctionPass *createLocalStackSlotAllocationPass();
+ /// createExpandPseudosPass - This pass expands pseudo-instructions.
+ ///
+ FunctionPass *createExpandPseudosPass();
+
} // End llvm namespace
#endif