[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / CodeGen / MSP430 / promote-i8-mul.ll
blob0e05e3978b1ee2fdcc0fca261cf28bf6173137db
1 ; RUN: llc < %s | FileCheck %s
3 target datalayout = "e-p:16:8:8-i8:8:8-i16:8:8-i32:8:8"
4 target triple = "msp430-elf"
6 @g_29 = common global i8 0, align 1               ; <i8*> [#uses=0]
8 define signext i8 @foo(i8 signext %_si1, i8 signext %_si2) nounwind readnone {
9 entry:
10 ; CHECK-LABEL: foo:
11 ; CHECK: call #__mspabi_mpyi
12   %mul = mul i8 %_si2, %_si1                      ; <i8> [#uses=1]
13   ret i8 %mul
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
22 declare i16 @bar(i8*)