mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-11-04 05:17:07 +00:00 
			
		
		
		
	Try harder to get rid of bitcast'd calls by ptrtoint/inttoptr'ing arguments and return values when DataLayout says it is safe to do so. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@225254 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			24 lines
		
	
	
		
			626 B
		
	
	
	
		
			LLVM
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			626 B
		
	
	
	
		
			LLVM
		
	
	
	
	
	
; RUN: opt < %s -instcombine -S | FileCheck %s
 | 
						|
 | 
						|
target datalayout = "e-p:32:32"
 | 
						|
target triple = "i686-pc-linux-gnu"
 | 
						|
 | 
						|
define i32 @main() {
 | 
						|
; CHECK-LABEL: @main(
 | 
						|
; CHECK: %[[call:.*]] = call i7* @ctime(i999* null)
 | 
						|
; CHECK: %[[cast:.*]] = ptrtoint i7* %[[call]] to i32
 | 
						|
; CHECK: ret i32 %[[cast]]
 | 
						|
entry:
 | 
						|
	%tmp = call i32 bitcast (i7* (i999*)* @ctime to i32 (i99*)*)( i99* null )
 | 
						|
	ret i32 %tmp
 | 
						|
}
 | 
						|
 | 
						|
define i7* @ctime(i999*) {
 | 
						|
; CHECK-LABEL: define i7* @ctime(
 | 
						|
; CHECK: %[[call:.*]] = call i32 @main()
 | 
						|
; CHECK: %[[cast:.*]] = inttoptr i32 %[[call]] to i7*
 | 
						|
entry:
 | 
						|
	%tmp = call i7* bitcast (i32 ()* @main to i7* ()*)( )
 | 
						|
	ret i7* %tmp
 | 
						|
}
 |