llvm-project/llvm/test/CodeGen/Hexagon/swp-order-deps3.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

28 lines
849 B
LLVM

; RUN: llc -mtriple=hexagon -O2 -simplifycfg-require-and-preserve-domtree=1 < %s
; REQUIRES: asserts
; Function Attrs: noinline nounwind ssp
define fastcc void @f0() #0 {
b0:
%v0 = add i32 0, 39
%v1 = and i32 %v0, -8
br i1 undef, label %b1, label %b2
b1: ; preds = %b1, %b0
%v2 = phi i32 [ %v10, %b1 ], [ undef, %b0 ]
%v3 = phi ptr [ %v7, %b1 ], [ undef, %b0 ]
%v4 = ptrtoint ptr %v3 to i32
%v5 = add i32 %v4, %v1
store i32 %v5, ptr %v3, align 4
%v7 = getelementptr inbounds i8, ptr %v3, i32 %v1
store i32 1111638594, ptr %v3, align 4
%v10 = add nsw i32 %v2, -1
%v11 = icmp sgt i32 %v10, 0
br i1 %v11, label %b1, label %b2
b2: ; preds = %b1, %b0
ret void
}
attributes #0 = { noinline nounwind ssp "target-cpu"="hexagonv55" }