aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/InstCombine/apint-call-cast-target.ll
blob: bcaef2df1c5efe398a5b7e7b93f3652aec88b762 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
; RUN: opt %s -instcombine | llvm-dis | grep call | not grep bitcast

target datalayout = "e-p:32:32"
target triple = "i686-pc-linux-gnu"


define i32 @main() {
entry:
	%tmp = call i32 bitcast (i7* (i999*)* @ctime to i32 (i99*)*)( i99* null )
	ret i32 %tmp
}

define i7* @ctime(i999*) {
entry:
	%tmp = call i7* bitcast (i32 ()* @main to i7* ()*)( )
	ret i7* %tmp
}