diff options
| author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2016-08-18 17:58:09 +0000 |
|---|---|---|
| committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2016-08-18 17:58:09 +0000 |
| commit | 84c2da47f9bbe2e9fb61b3ba28c5bb3039f40c7d (patch) | |
| tree | 504879ee4dae774f73dad5f7f93a516aa78bc31d /llvm/test | |
| parent | 61a72d88506cbb0b7067bb8176028fe61700b5ed (diff) | |
| download | bcm5719-llvm-84c2da47f9bbe2e9fb61b3ba28c5bb3039f40c7d.tar.gz bcm5719-llvm-84c2da47f9bbe2e9fb61b3ba28c5bb3039f40c7d.zip | |
AArch64: Don't call getIterator() on iterators
Remove an unnecessary round-trip:
iterator => operator->() => getIterator()
In some cases, the iterator is end(), so the dereference of operator->
is invalid (UB).
The testcase only crashes with r278974 (currently reverted to
investigate this), which adds an assertion for invalid dereferences of
ilist nodes.
Fixes PR29035.
llvm-svn: 279104
Diffstat (limited to 'llvm/test')
| -rw-r--r-- | llvm/test/CodeGen/AArch64/redundant-copy-elim-empty-mbb.ll | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/AArch64/redundant-copy-elim-empty-mbb.ll b/llvm/test/CodeGen/AArch64/redundant-copy-elim-empty-mbb.ll new file mode 100644 index 00000000000..27a33a2337e --- /dev/null +++ b/llvm/test/CodeGen/AArch64/redundant-copy-elim-empty-mbb.ll @@ -0,0 +1,29 @@ +; RUN: llc < %s | FileCheck %s +; Make sure we don't crash in AArch64RedundantCopyElimination when a +; MachineBasicBlock is empty. PR29035. + +target datalayout = "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128" +target triple = "aarch64-unknown-linux-gnu" + +declare i8* @bar() + +; CHECK-LABEL: foo: +; CHECK: tbz +; CHECK: orr +; CHECK: ret +; CHECK: bl bar +; CHECK: cbnz +; CHECK: ret +define i1 @foo(i1 %start) { +entry: + br i1 %start, label %cleanup, label %if.end + +if.end: ; preds = %if.end, %entry + %call = tail call i8* @bar() + %cmp = icmp eq i8* %call, null + br i1 %cmp, label %cleanup, label %if.end + +cleanup: ; preds = %if.end, %entry + %retval.0 = phi i1 [ true, %entry ], [ false, %if.end ] + ret i1 %retval.0 +} |

