You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
459 B
17 lines
459 B
; 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
|
|
}
|