mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-10-31 08:16:47 +00:00 
			
		
		
		
	r223113 added support for ARM modified immediate assembly syntax. Which assumes all immediate operands are prefixed with a '#'. This assumption is wrong as per the ARMARM - which recommends that all '#' characters be treated optional. The current patch fixes this regression and adds a test case. A follow-up patch will expand the test coverage to other instructions. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@223381 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			11 lines
		
	
	
		
			268 B
		
	
	
	
		
			ArmAsm
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			268 B
		
	
	
	
		
			ArmAsm
		
	
	
	
	
	
| @RUN: not llvm-mc -triple=armv7-unknown-linux-gnueabi < %s  2>&1 | FileCheck %s
 | |
| @RUN: not llvm-mc -triple=armv7-apple-darwin < %s  2>&1 | FileCheck %s
 | |
| 
 | |
| .text
 | |
| bar:
 | |
|   mov r0, =0x101
 | |
| @ CHECK: error: unknown token in expression
 | |
| @ CHECK: mov r0, =0x101
 | |
| @ CHECK:         ^
 | |
| 
 |