diff options
author | Brendon Cahoon <bcahoon@codeaurora.org> | 2015-05-14 17:31:40 +0000 |
---|---|---|
committer | Brendon Cahoon <bcahoon@codeaurora.org> | 2015-05-14 17:31:40 +0000 |
commit | 485bea74ad57dfeb67c499f71c642d881feb6b85 (patch) | |
tree | e10fc7f53555a1d5c9af651b7e9912770b8b1f19 /llvm/test/CodeGen/Hexagon/hwloop-ph-deadcode.ll | |
parent | 9b673bf752776455dd9af7a2b8a4fcfdec48594c (diff) | |
download | bcm5719-llvm-485bea74ad57dfeb67c499f71c642d881feb6b85.tar.gz bcm5719-llvm-485bea74ad57dfeb67c499f71c642d881feb6b85.zip |
[Hexagon] Remove dead constant assignment in hardware loop pass
After converting a loop to a hardware loop, the pass should remove
any unnecessary instructions from the old compare-and-branch
code. This patch removes a dead constant assignment that was
used in the compare instruction.
Differential Revision: http://reviews.llvm.org/D9720
llvm-svn: 237373
Diffstat (limited to 'llvm/test/CodeGen/Hexagon/hwloop-ph-deadcode.ll')
-rw-r--r-- | llvm/test/CodeGen/Hexagon/hwloop-ph-deadcode.ll | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/Hexagon/hwloop-ph-deadcode.ll b/llvm/test/CodeGen/Hexagon/hwloop-ph-deadcode.ll new file mode 100644 index 00000000000..06e6db420f8 --- /dev/null +++ b/llvm/test/CodeGen/Hexagon/hwloop-ph-deadcode.ll @@ -0,0 +1,23 @@ +; RUN: llc -march=hexagon -mcpu=hexagonv5 -O2 -disable-block-placement=0 < %s | FileCheck %s + +; Test that there is no redundant register assignment in the hardware loop +; preheader. + +; CHECK-NOT: r{{.*}} = #5 + +@g = external global i32 + +define void @foo() #0 { +entry: + br i1 undef, label %if.end38, label %for.body + +for.body: + %loopIdx.051 = phi i32 [ %inc, %for.body ], [ 0, %entry ] + store i32 1, i32* @g, align 4 + %inc = add i32 %loopIdx.051, 1 + %cmp9 = icmp ult i32 %inc, 5 + br i1 %cmp9, label %for.body, label %if.end38 + +if.end38: + ret void +} |