mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-10 01:10:48 +00:00
f28f8bc40e
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100208 91177308-0d34-0410-b5e6-96231b3b80d8
20 lines
465 B
LLVM
20 lines
465 B
LLVM
; RUN: llc -mtriple=i386-apple-darwin < %s | FileCheck %s
|
|
|
|
declare void @llvm.memset.i32(i8*, i8, i32, i32) nounwind
|
|
|
|
define fastcc void @t1() nounwind {
|
|
entry:
|
|
; CHECK: t1:
|
|
; CHECK: call _memset
|
|
call void @llvm.memset.i32( i8* null, i8 0, i32 188, i32 1 ) nounwind
|
|
unreachable
|
|
}
|
|
|
|
define fastcc void @t2(i8 signext %c) nounwind {
|
|
entry:
|
|
; CHECK: t2:
|
|
; CHECK: call _memset
|
|
call void @llvm.memset.i32( i8* undef, i8 %c, i32 76, i32 1 ) nounwind
|
|
unreachable
|
|
}
|