]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - opencl/llvm.git/blob - test/CodeGen/Thumb2/thumb2-mul.ll
Mass update to CodeGen tests to use CHECK-LABEL for labels corresponding to function...
[opencl/llvm.git] / test / CodeGen / Thumb2 / thumb2-mul.ll
1 ; RUN: llc < %s -march=thumb -mattr=+thumb2 | FileCheck %s
3 define i32 @f1(i32 %a, i32 %b, i32 %c) {
4 ; CHECK-LABEL: f1:
5 ; CHECK: muls r0, r1, r0
6     %tmp = mul i32 %a, %b
7     ret i32 %tmp
8 }
10 %struct.CMPoint = type { %struct.Point, float, float, [5 x float] }
11 %struct.Point = type { float, float }
13 define %struct.CMPoint* @t1(i32 %i, i32 %j, i32 %n, %struct.CMPoint* %thePoints) nounwind readnone ssp {
14 entry:
15 ; CHECK-LABEL: t1:
16 ; CHECK: mla     r0, r2, r0, r1
17 ; CHECK: add.w   r0, r0, r0, lsl #3
18 ; CHECK: add.w   r0, r3, r0, lsl #2
19   %mul = mul i32 %n, %i
20   %add = add i32 %mul, %j
21   %0 = ptrtoint %struct.CMPoint* %thePoints to i32
22   %mul5 = mul i32 %add, 36
23   %add6 = add i32 %mul5, %0
24   %1 = inttoptr i32 %add6 to %struct.CMPoint*
25   ret %struct.CMPoint* %1
26 }