mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
9c044674e6
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@105092 91177308-0d34-0410-b5e6-96231b3b80d8
17 lines
446 B
LLVM
17 lines
446 B
LLVM
; 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: call 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
|
|
}
|