diff options
author | Ahmed Bougacha <ahmed.bougacha@gmail.com> | 2017-05-10 00:39:25 +0000 |
---|---|---|
committer | Ahmed Bougacha <ahmed.bougacha@gmail.com> | 2017-05-10 00:39:25 +0000 |
commit | 8c358e301691e3bca486cf26a624b184080bee7f (patch) | |
tree | 399ff0308143199cf11f246f0319c291d13626fc /llvm/test | |
parent | 00d68222783a1592f3bf9d55b9a1f8f7b8e42733 (diff) | |
download | bcm5719-llvm-8c358e301691e3bca486cf26a624b184080bee7f.tar.gz bcm5719-llvm-8c358e301691e3bca486cf26a624b184080bee7f.zip |
[CodeGen] Compute DT/LI lazily in SafeStackLegacyPass. NFC.
We currently require SCEV, which requires DT/LI. Those are expensive to
compute, but the pass only runs for functions that have the safestack
attribute.
Compute DT/LI to build SCEV lazily, only when the pass is actually going
to transform the function.
Differential Revision: https://reviews.llvm.org/D31302
llvm-svn: 302610
Diffstat (limited to 'llvm/test')
-rw-r--r-- | llvm/test/CodeGen/X86/O0-pipeline.ll | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/X86/O0-pipeline.ll b/llvm/test/CodeGen/X86/O0-pipeline.ll index ba95eba13fd..753861a01e8 100644 --- a/llvm/test/CodeGen/X86/O0-pipeline.ll +++ b/llvm/test/CodeGen/X86/O0-pipeline.ll @@ -27,9 +27,6 @@ ; CHECK-NEXT: FunctionPass Manager ; CHECK-NEXT: Dominator Tree Construction ; CHECK-NEXT: Exception handling preparation -; CHECK-NEXT: Dominator Tree Construction -; CHECK-NEXT: Natural Loop Information -; CHECK-NEXT: Scalar Evolution Analysis ; CHECK-NEXT: Safe Stack instrumentation pass ; CHECK-NEXT: Insert stack protectors ; CHECK-NEXT: Module Verifier |