view test/ExecutionEngine/test-call.ll @ 52:c22698ecb2a9

modified CreateIdentifierInfo and create new function which was named 'CreateUniqueIdentifierInfo'.
author Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
date Wed, 15 Jan 2014 21:01:33 +0900
parents 95c75e76d11b
children 54457678186b
line wrap: on
line source

; RUN: %lli %s > /dev/null
; XFAIL: arm

declare void @exit(i32)

define i32 @test(i8 %C, i16 %S) {
	%X = trunc i16 %S to i8		; <i8> [#uses=1]
	%Y = zext i8 %X to i32		; <i32> [#uses=1]
	ret i32 %Y
}

define void @FP(void (i32)* %F) {
	%X = call i32 @test( i8 123, i16 1024 )		; <i32> [#uses=1]
	call void %F( i32 %X )
	ret void
}

define i32 @main() {
	call void @FP( void (i32)* @exit )
	ret i32 1
}