You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
546 B

; RUN: llc -march=hexagon < %s | FileCheck %s
; Make sure that this doesn't crash.
; CHECK: vadd
define void @foo(<64 x i32>* %a0, <64 x i32>* %a1) #0 {
%v0 = load <64 x i32>, <64 x i32>* %a0, align 128
%v1 = load <64 x i32>, <64 x i32>* %a1, align 128
%v2 = icmp sgt <64 x i32> %v0, zeroinitializer
%v3 = sext <64 x i1> %v2 to <64 x i32>
%v4 = add nsw <64 x i32> %v1, %v3
store <64 x i32> %v4, <64 x i32>* %a1, align 128
ret void
}
attributes #0 = { nounwind "target-cpu"="hexagonv65" "target-features"="+hvx,+hvx-length128b" }