[TwoAddressInstructionPass] When looking for a 3 addr conversion after commuting...
[oota-llvm.git] / test / CodeGen / MSP430 / 2009-11-05-8BitLibcalls.ll
1 ; RUN: llc < %s | FileCheck %s
2
3 target datalayout = "e-p:16:8:8-i8:8:8-i16:8:8-i32:8:8"
4 target triple = "msp430-elf"
5
6 @g_29 = common global i8 0, align 1               ; <i8*> [#uses=0]
7
8 define signext i8 @foo(i8 signext %_si1, i8 signext %_si2) nounwind readnone {
9 entry:
10 ; CHECK-LABEL: foo:
11 ; CHECK: call #__mulqi3
12   %mul = mul i8 %_si2, %_si1                      ; <i8> [#uses=1]
13   ret i8 %mul
14 }
15
16 define void @uint81(i16* nocapture %p_32) nounwind {
17 entry:
18   %call = tail call i16 @bar(i8* bitcast (i8 (i8, i8)* @foo to i8*)) nounwind ; <i16> [#uses=0]
19   ret void
20 }
21
22 declare i16 @bar(i8*)