diff options
author | Duncan Sands <baldrick@free.fr> | 2012-09-29 10:25:35 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2012-09-29 10:25:35 +0000 |
commit | 454627252b1cc43e81949d41eb20e9ea9560da58 (patch) | |
tree | f17db9a4b50aee70ecbabfe49763d454584dc6f1 /test/Transforms/SROA/alignment.ll | |
parent | 0eb5dadf657d38da9a8c7fe44c660bcfb6933038 (diff) | |
download | external_llvm-454627252b1cc43e81949d41eb20e9ea9560da58.zip external_llvm-454627252b1cc43e81949d41eb20e9ea9560da58.tar.gz external_llvm-454627252b1cc43e81949d41eb20e9ea9560da58.tar.bz2 |
Speculatively revert commit 164885 (nadav) in the hope of ressurecting a pile of
buildbots. Original commit message:
A DAGCombine optimization for merging consecutive stores. This optimization is not profitable in many cases
because moden processos can store multiple values in parallel, and preparing the consecutive store requires
some work. We only handle these cases:
1. Consecutive stores where the values and consecutive loads. For example:
int a = p->a;
int b = p->b;
q->a = a;
q->b = b;
2. Consecutive stores where the values are constants. Foe example:
q->a = 4;
q->b = 5;
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164890 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/SROA/alignment.ll')
0 files changed, 0 insertions, 0 deletions