diff options
| author | Jim Grosbach <grosbach@apple.com> | 2010-01-19 18:31:11 +0000 |
|---|---|---|
| committer | Jim Grosbach <grosbach@apple.com> | 2010-01-19 18:31:11 +0000 |
| commit | 04770f2aa13bf1e2503a9737d1e4bdad3d721f1c (patch) | |
| tree | 713bb666fc33f8cd5d22ac1a0f845865b0c0107c /llvm/include | |
| parent | 18f49ce2d39f828ba7a82018566bb7edb66a9289 (diff) | |
| download | bcm5719-llvm-04770f2aa13bf1e2503a9737d1e4bdad3d721f1c.tar.gz bcm5719-llvm-04770f2aa13bf1e2503a9737d1e4bdad3d721f1c.zip | |
For aligned load/store instructions, it's only required to know whether a
function can support dynamic stack realignment. That's a much easier question
to answer at instruction selection stage than whether the function actually
will have dynamic alignment prologue. This allows the removal of the
stack alignment heuristic pass, and improves code quality for cases where
the heuristic would result in dynamic alignment code being generated when
it was not strictly necessary.
llvm-svn: 93885
Diffstat (limited to 'llvm/include')
| -rw-r--r-- | llvm/include/llvm/CodeGen/Passes.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/include/llvm/CodeGen/Passes.h b/llvm/include/llvm/CodeGen/Passes.h index 2203f8c1202..7e0da3f6a8d 100644 --- a/llvm/include/llvm/CodeGen/Passes.h +++ b/llvm/include/llvm/CodeGen/Passes.h @@ -195,10 +195,6 @@ namespace llvm { /// the GCC-style builtin setjmp/longjmp (sjlj) to handling EH control flow. FunctionPass *createSjLjEHPass(const TargetLowering *tli); - /// createMaxStackAlignmentCalculatorPass() - Determine the maximum required - /// alignment for a function. - FunctionPass* createMaxStackAlignmentCalculatorPass(); - } // End llvm namespace #endif |

