brintos

brintos / llvm-project-archived public Read only

0
0
Text · 286 B · a838e8c Raw
11 lines · plain
1; RUN: llc < %s -mtriple=nvptx64 -mcpu=sm_20 | FileCheck %s2; RUN: %if ptxas %{ llc < %s -mtriple=nvptx64 -mcpu=sm_20 | %ptxas-verify %}3 4; CHECK: imad5define i32 @imad(i32 %a, i32 %b, i32 %c) {6; CHECK: mad.lo.s327  %val0 = mul i32 %a, %b8  %val1 = add i32 %val0, %c9  ret i32 %val110}11