bolt/deps/llvm-18.1.8/llvm/test/CodeGen/NVPTX/imad.ll
2025-02-14 19:21:04 +01:00

10 lines
282 B
LLVM

; RUN: llc < %s -march=nvptx64 -mcpu=sm_20 | FileCheck %s
; RUN: %if ptxas %{ llc < %s -march=nvptx64 -mcpu=sm_20 | %ptxas-verify %}
; CHECK: imad
define i32 @imad(i32 %a, i32 %b, i32 %c) {
; CHECK: mad.lo.s32
%val0 = mul i32 %a, %b
%val1 = add i32 %val0, %c
ret i32 %val1
}