mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-11-03 14:21:30 +00:00 
			
		
		
		
	git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@239657 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			34 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			LLVM
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			LLVM
		
	
	
	
	
	
; RUN: not llc -march=amdgcn -mcpu=SI -verify-machineinstrs< %s 2>&1 | FileCheck %s
 | 
						|
; RUN: not llc -march=amdgcn -mcpu=tonga -verify-machineinstrs< %s 2>&1 | FileCheck %s
 | 
						|
; RUN: not llc -march=r600 -mcpu=cypress < %s 2>&1 | FileCheck %s
 | 
						|
 | 
						|
; CHECK: error: unsupported call to function external_function in test_call_external
 | 
						|
 | 
						|
 | 
						|
declare i32 @external_function(i32) nounwind
 | 
						|
 | 
						|
define void @test_call_external(i32 addrspace(1)* %out, i32 addrspace(1)* %in) {
 | 
						|
  %b_ptr = getelementptr i32, i32 addrspace(1)* %in, i32 1
 | 
						|
  %a = load i32, i32 addrspace(1)* %in
 | 
						|
  %b = load i32, i32 addrspace(1)* %b_ptr
 | 
						|
  %c = call i32 @external_function(i32 %b) nounwind
 | 
						|
  %result = add i32 %a, %c
 | 
						|
  store i32 %result, i32 addrspace(1)* %out
 | 
						|
  ret void
 | 
						|
}
 | 
						|
 | 
						|
define i32 @defined_function(i32 %x) nounwind noinline {
 | 
						|
  %y = add i32 %x, 8
 | 
						|
  ret i32 %y
 | 
						|
}
 | 
						|
 | 
						|
define void @test_call(i32 addrspace(1)* %out, i32 addrspace(1)* %in) {
 | 
						|
  %b_ptr = getelementptr i32, i32 addrspace(1)* %in, i32 1
 | 
						|
  %a = load i32, i32 addrspace(1)* %in
 | 
						|
  %b = load i32, i32 addrspace(1)* %b_ptr
 | 
						|
  %c = call i32 @defined_function(i32 %b) nounwind
 | 
						|
  %result = add i32 %a, %c
 | 
						|
  store i32 %result, i32 addrspace(1)* %out
 | 
						|
  ret void
 | 
						|
}
 |