aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/CodeGen
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2010-08-31 09:05:06 +0000
committerDuncan Sands <baldrick@free.fr>2010-08-31 09:05:06 +0000
commitd2c50213fa4988cb8c70c1ca24a794b56cea116a (patch)
tree37f054efac3531a71ecd2082f021745b8ca3ff19 /include/llvm/CodeGen
parent5a2e4d83b41d4519f33486dfaec106bf94667c73 (diff)
downloadexternal_llvm-d2c50213fa4988cb8c70c1ca24a794b56cea116a.zip
external_llvm-d2c50213fa4988cb8c70c1ca24a794b56cea116a.tar.gz
external_llvm-d2c50213fa4988cb8c70c1ca24a794b56cea116a.tar.bz2
Stop using the dom frontier in DwarfEHPrepare by not promoting alloca's
any more. I plan to reimplement alloca promotion using SSAUpdater later. It looks like Bill's URoR logic really always needs domtree, so the pass now always asks for domtree info. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@112597 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen')
-rw-r--r--include/llvm/CodeGen/Passes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/Passes.h b/include/llvm/CodeGen/Passes.h
index 0fa498a..4762a39 100644
--- a/include/llvm/CodeGen/Passes.h
+++ b/include/llvm/CodeGen/Passes.h
@@ -192,7 +192,7 @@ namespace llvm {
/// createDwarfEHPass - This pass mulches exception handling code into a form
/// adapted to code generation. Required if using dwarf exception handling.
- FunctionPass *createDwarfEHPass(const TargetMachine *tm, bool fast);
+ FunctionPass *createDwarfEHPass(const TargetMachine *tm);
/// createSjLjEHPass - This pass adapts exception handling code to use
/// the GCC-style builtin setjmp/longjmp (sjlj) to handling EH control flow.