mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-10-31 08:16:47 +00:00 
			
		
		
		
	Rafael correctly pointed out that the restriction is unnecessary. Although the tests are intended to ensure that we dont abort due to an assertion, running the tests in all modes is better since it also ensures that we dont crash without assertions. Always run these tests to ensure that we can handle invalid input correctly. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@209496 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			10 lines
		
	
	
		
			125 B
		
	
	
	
		
			ArmAsm
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			125 B
		
	
	
	
		
			ArmAsm
		
	
	
	
	
	
| // RUN: not llvm-mc -triple i686-linux -o /dev/null %s
 | |
| 
 | |
| 	.macro macro parameter=0
 | |
| 		.if \parameter
 | |
| 		.else
 | |
| 	.endm
 | |
| 
 | |
| 	macro 1
 | |
| 
 |