aboutsummaryrefslogblamecommitdiff
path: root/test/CodeGen/X86/sibcall-3.ll
blob: 9fcb4603a9d1991ab917bdf9d1ef26a50b80bcae (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11



                                                                          
                  
                




                                                                              
                  



                                                              
; RUN: llc < %s -mtriple=i386-unknown-unknown | FileCheck %s
; PR7193

define void @t1(i8* inreg %dst, i8* inreg %src, i8* inreg %len) nounwind {
; CHECK-LABEL: 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-LABEL: t2:
; CHECK: jmpl
  tail call void null(i8* inreg %dst, i8* inreg %src) nounwind
  ret void
}