llvm/test/CodeGen/Hexagon/add_int_double.ll
Krzysztof Parzyszek c9946711ce [Hexagon] Add more lit tests
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@327271 91177308-0d34-0410-b5e6-96231b3b80d8
2018-03-12 14:01:28 +00:00

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 }