llvm-project/llvm/test/CodeGen/Hexagon/expand-condsets-copy-lis.ll
Fangrui Song 2208c97c1b [Hexagon,test] Change llc -march= to -mtriple=
Similar to 806761a7629df268c8aed49657aeccffa6bca449

-mtriple= specifies the full target triple while -march= merely sets the
architecture part of the default target triple, leaving a target triple which
may not make sense.

Therefore, -march= is error-prone and not recommended for tests without a target
triple. The issue has been benign as we recognize $unknown-apple-darwin as ELF instead
of rejecting it outrightly.
2024-12-15 10:20:22 -08:00

38 lines
1.2 KiB
LLVM

; RUN: llc -mtriple=hexagon < %s
; REQUIRES: asserts
; Test that the compiler doesn't assert because the live interval information
; isn't updated correctly during the Hexagon Expand Condsets pass. The pass
; wasn't updating the information when converting a mux with the same operands
; into a copy. When this occurs, the pass needs to update the liveness
; information for the predicate register, which is removed.
define void @f0(i32 %a0) unnamed_addr {
b0:
%v0 = or i32 undef, %a0
%v1 = or i32 undef, %v0
br label %b1
b1: ; preds = %b3, %b0
%v2 = phi i32 [ %v9, %b3 ], [ 0, %b0 ]
%v3 = phi i32 [ 0, %b3 ], [ %v1, %b0 ]
%v4 = srem i32 %v2, 4
%v5 = icmp eq i32 %v4, 0
%v6 = select i1 %v5, i32 %v1, i32 %v3
%v7 = shl i32 %v6, 8
%v8 = add i32 0, %v7
br i1 undef, label %b2, label %b3
b2: ; preds = %b1
store i32 %v8, ptr undef, align 4
br label %b3
b3: ; preds = %b2, %b1
%v9 = add nuw nsw i32 %v2, 1
%v10 = icmp slt i32 %v9, undef
br i1 %v10, label %b1, label %b4
b4: ; preds = %b3
unreachable
}