mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
7663d1fd5a
This also introduces DAGCombiner patterns for mul.wide to multiply two smaller integers and produce a larger integer llvm-svn: 211935
10 lines
205 B
LLVM
10 lines
205 B
LLVM
; RUN: llc < %s -march=nvptx -mcpu=sm_20 | FileCheck %s
|
|
|
|
; 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
|
|
}
|