summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/sibcall-3.ll
blob: f97abe00295773fca03f752d7bff8cd75b0ccc15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
; RUN: llc < %s -mtriple=i386-unknown-unknown | FileCheck %s
; PR7193

define void @t1(i8* inreg %dst, i8* inreg %src, i8* inreg %len) nounwind {
; CHECK: t1:
; CHECK: calll 0
  tail call void null(i8* inreg %dst, i8* inreg %src, i8* inreg %len) nounwind
  ret void
}

define void @t2(i8* inreg %dst, i8* inreg %src, i8* inreg %len) nounwind {
; CHECK: t2:
; CHECK: jmpl
  tail call void null(i8* inreg %dst, i8* inreg %src) nounwind
  ret void
}