~pali/+junk/llvm-toolchain-3.7

« back to all changes in this revision

Viewing changes to test/CodeGen/MSP430/2009-11-05-8BitLibcalls.ll

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2015-07-15 17:51:08 UTC
  • Revision ID: package-import@ubuntu.com-20150715175108-l8mynwovkx4zx697
Tags: upstream-3.7~+rc2
ImportĀ upstreamĀ versionĀ 3.7~+rc2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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*)