mirror of
https://github.com/RPCS3/llvm.git
synced 2025-05-14 09:26:22 +00:00

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@327271 91177308-0d34-0410-b5e6-96231b3b80d8
12 lines
297 B
LLVM
12 lines
297 B
LLVM
; RUN: llc -march=hexagon < %s | FileCheck %s
|
|
; CHECK: r{{[0-9]+}}:{{[0-9]+}} = add(r{{[0-9]+}}:{{[0-9+]}},r{{[0-9]+}}:{{[0-9]+}}):raw:{{..}}
|
|
|
|
define i64 @f0(i32 %a0, i64 %a1) #0 {
|
|
b0:
|
|
%v0 = sext i32 %a0 to i64
|
|
%v1 = add nsw i64 %v0, %a1
|
|
ret i64 %v1
|
|
}
|
|
|
|
attributes #0 = { nounwind readnone }
|