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.
14 lines
334 B
14 lines
334 B
4 months ago
|
; RUN: llc -march=hexagon < %s | FileCheck %s
|
||
|
; Check for S4_addaddi:
|
||
|
; CHECK: r{{[0-9]+}} = add(r{{[0-9]+}},add(r{{[0-9]+}},#2))
|
||
|
|
||
|
define i32 @fred(i32 %a0, i32 %a1, i32* nocapture %a2) #0 {
|
||
|
b3:
|
||
|
%v4 = add nsw i32 %a0, 2
|
||
|
%v5 = add nsw i32 %v4, %a1
|
||
|
store i32 %v5, i32* %a2, align 4
|
||
|
ret i32 undef
|
||
|
}
|
||
|
|
||
|
attributes #0 = { nounwind }
|