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.
15 lines
309 B
15 lines
309 B
; RUN: llc -march=hexagon < %s | FileCheck %s
|
|
; CHECK: if{{.*}}add
|
|
; CHECK: if{{.*}}sub
|
|
|
|
; Function Attrs: nounwind
|
|
define i32 @f0(i32 %a0, i32 %a1, i32 %a2, i1 %x) #0 {
|
|
b0:
|
|
%v0 = add i32 %a0, %a2
|
|
%v1 = sub i32 %a1, %a2
|
|
%v2 = select i1 %x, i32 %v0, i32 %v1
|
|
ret i32 %v2
|
|
}
|
|
|
|
attributes #0 = { nounwind }
|