mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-11-03 14:21:30 +00:00 
			
		
		
		
	This commit reports an error when the MIR parser encounters a machine function with the name that is the same as the name of a different machine function. Reviewers: Duncan P. N. Exon Smith Differential Revision: http://reviews.llvm.org/D10130 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@239774 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			11 lines
		
	
	
		
			288 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			288 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
# RUN: not llc -start-after branch-folder -stop-after branch-folder -o /dev/null %s 2>&1 | FileCheck %s
 | 
						|
# This test ensures that the machine function errors are reported correctly.
 | 
						|
 | 
						|
---
 | 
						|
name:            foo
 | 
						|
...
 | 
						|
---
 | 
						|
# CHECK: redefinition of machine function 'foo'
 | 
						|
name:            foo
 | 
						|
...
 |