diff options
| author | Chandler Carruth <chandlerc@gmail.com> | 2013-07-18 07:15:00 +0000 |
|---|---|---|
| committer | Chandler Carruth <chandlerc@gmail.com> | 2013-07-18 07:15:00 +0000 |
| commit | f0546402af00d4e1c97a504967508e2d4288cbc8 (patch) | |
| tree | b223fd2f7e16011a11551d29e12ce46bcff6e08b /llvm/test | |
| parent | 2a0a476e74b5650ebf16b061bd617ca7830ba121 (diff) | |
| download | bcm5719-llvm-f0546402af00d4e1c97a504967508e2d4288cbc8.tar.gz bcm5719-llvm-f0546402af00d4e1c97a504967508e2d4288cbc8.zip | |
Reapply r186316 with a fix for one bug where the code could walk off the
end of a vector. This was found with ASan. I've had one other report of
a crasher, but thus far been unable to reproduce the crash. It may well
be fixed with this version, and if not I'd like to get more information
from the build bots about what is happening.
See r186316 for the full commit log for the new implementation of the
SROA algorithm.
llvm-svn: 186565
Diffstat (limited to 'llvm/test')
| -rw-r--r-- | llvm/test/Transforms/SROA/basictest.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/Transforms/SROA/basictest.ll b/llvm/test/Transforms/SROA/basictest.ll index 7a05b55693d..ca52dceb8f0 100644 --- a/llvm/test/Transforms/SROA/basictest.ll +++ b/llvm/test/Transforms/SROA/basictest.ll @@ -1308,7 +1308,7 @@ end: define void @PR15805(i1 %a, i1 %b) { ; CHECK-LABEL: @PR15805( -; CHECK: select i1 undef, i64* %c, i64* %c +; CHECK-NOT: alloca ; CHECK: ret void %c = alloca i64, align 8 |

