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@108658 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			24 lines
		
	
	
		
			448 B
		
	
	
	
		
			ArmAsm
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			448 B
		
	
	
	
		
			ArmAsm
		
	
	
	
	
	
// RUN: not llvm-mc -triple x86_64-apple-darwin10 %s 2> %t.err
 | 
						|
// RUN: FileCheck --check-prefix=CHECK-ERRORS %s < %t.err
 | 
						|
 | 
						|
.macro .test0
 | 
						|
.endmacro
 | 
						|
 | 
						|
.macros_off
 | 
						|
// CHECK-ERRORS: 9:1: warning: ignoring directive for now
 | 
						|
.test0
 | 
						|
.macros_on
 | 
						|
 | 
						|
.test0
 | 
						|
 | 
						|
// CHECK-ERRORS: macro '.test0' is already defined
 | 
						|
.macro .test0
 | 
						|
.endmacro
 | 
						|
 | 
						|
// CHECK-ERRORS: unexpected '.endmacro' in file
 | 
						|
.endmacro
 | 
						|
 | 
						|
// CHECK-ERRORS: no matching '.endmacro' in definition
 | 
						|
.macro dummy
 | 
						|
 |