mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-11-03 14:21:30 +00:00 
			
		
		
		
	Introduce a variable in the AsmParserExtension whether [] is valid in an expression. If it is true, parse them like (). Enable this for ELF only. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@126443 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			23 lines
		
	
	
		
			645 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			645 B
		
	
	
	
		
			C++
		
	
	
	
	
	
//===-- MCAsmParserExtension.cpp - Asm Parser Hooks -----------------------===//
 | 
						|
//
 | 
						|
//                     The LLVM Compiler Infrastructure
 | 
						|
//
 | 
						|
// This file is distributed under the University of Illinois Open Source
 | 
						|
// License. See LICENSE.TXT for details.
 | 
						|
//
 | 
						|
//===----------------------------------------------------------------------===//
 | 
						|
 | 
						|
#include "llvm/MC/MCParser/MCAsmParserExtension.h"
 | 
						|
using namespace llvm;
 | 
						|
 | 
						|
MCAsmParserExtension::MCAsmParserExtension() :
 | 
						|
  BracketExpressionsSupported(false) {
 | 
						|
}
 | 
						|
 | 
						|
MCAsmParserExtension::~MCAsmParserExtension() {
 | 
						|
}
 | 
						|
 | 
						|
void MCAsmParserExtension::Initialize(MCAsmParser &Parser) {
 | 
						|
  this->Parser = &Parser;
 | 
						|
}
 |