https://github.com/epiqc/ScaffCC
Raw File
Tip revision: c9bb19c5906c44795fde065e4a9c6b1e92c04968 authored by EPiQC on 06 August 2017, 15:43:30 UTC
Merge branch 'master' of https://github.com/epiqc/ScaffCC
Tip revision: c9bb19c
test-call.ll
; 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
}

back to top