diff options
| author | Michael Zolotukhin <mzolotukhin@apple.com> | 2018-06-16 18:57:31 +0000 |
|---|---|---|
| committer | Michael Zolotukhin <mzolotukhin@apple.com> | 2018-06-16 18:57:31 +0000 |
| commit | 158a7c33231e3072892331d889b8e8bcdae1a1c0 (patch) | |
| tree | f042e989a5c4c6403889eca4c1fda558ea96608e /llvm/test | |
| parent | b6b7a3bb781ff047fda6ecf3ba23a80806bb526f (diff) | |
| download | bcm5719-llvm-158a7c33231e3072892331d889b8e8bcdae1a1c0.tar.gz bcm5719-llvm-158a7c33231e3072892331d889b8e8bcdae1a1c0.zip | |
CorrelatedValuePropagation: Preserve DT.
Summary:
We only modify CFG in a couple of places, and we can preserve DT there
with a little effort.
Reviewers: davide, vsk
Subscribers: hiraditya, llvm-commits
Differential Revision: https://reviews.llvm.org/D48059
llvm-svn: 334895
Diffstat (limited to 'llvm/test')
| -rw-r--r-- | llvm/test/Other/opt-O2-pipeline.ll | 1 | ||||
| -rw-r--r-- | llvm/test/Other/opt-O3-pipeline.ll | 1 | ||||
| -rw-r--r-- | llvm/test/Other/opt-Os-pipeline.ll | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/llvm/test/Other/opt-O2-pipeline.ll b/llvm/test/Other/opt-O2-pipeline.ll index e150835fc0c..96d9f22cc01 100644 --- a/llvm/test/Other/opt-O2-pipeline.ll +++ b/llvm/test/Other/opt-O2-pipeline.ll @@ -145,7 +145,6 @@ ; CHECK-NEXT: Lazy Value Information Analysis ; CHECK-NEXT: Jump Threading ; CHECK-NEXT: Value Propagation -; CHECK-NEXT: Dominator Tree Construction ; CHECK-NEXT: Basic Alias Analysis (stateless AA impl) ; CHECK-NEXT: Function Alias Analysis Results ; CHECK-NEXT: Memory Dependence Analysis diff --git a/llvm/test/Other/opt-O3-pipeline.ll b/llvm/test/Other/opt-O3-pipeline.ll index 56e14dc0419..fc9f4fd6b31 100644 --- a/llvm/test/Other/opt-O3-pipeline.ll +++ b/llvm/test/Other/opt-O3-pipeline.ll @@ -149,7 +149,6 @@ ; CHECK-NEXT: Lazy Value Information Analysis ; CHECK-NEXT: Jump Threading ; CHECK-NEXT: Value Propagation -; CHECK-NEXT: Dominator Tree Construction ; CHECK-NEXT: Basic Alias Analysis (stateless AA impl) ; CHECK-NEXT: Function Alias Analysis Results ; CHECK-NEXT: Memory Dependence Analysis diff --git a/llvm/test/Other/opt-Os-pipeline.ll b/llvm/test/Other/opt-Os-pipeline.ll index 2d481ce1e0e..206a20a598e 100644 --- a/llvm/test/Other/opt-Os-pipeline.ll +++ b/llvm/test/Other/opt-Os-pipeline.ll @@ -131,7 +131,6 @@ ; CHECK-NEXT: Lazy Value Information Analysis ; CHECK-NEXT: Jump Threading ; CHECK-NEXT: Value Propagation -; CHECK-NEXT: Dominator Tree Construction ; CHECK-NEXT: Basic Alias Analysis (stateless AA impl) ; CHECK-NEXT: Function Alias Analysis Results ; CHECK-NEXT: Memory Dependence Analysis |

