mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-10-31 08:16:47 +00:00 
			
		
		
		
	git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94129 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			36 lines
		
	
	
		
			978 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			978 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| //===-- MCAsmParser.cpp - Abstract Asm Parser Interface -------------------===//
 | |
| //
 | |
| //                     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/MCAsmParser.h"
 | |
| #include "llvm/MC/MCParser/MCAsmLexer.h"
 | |
| #include "llvm/MC/MCParser/MCParsedAsmOperand.h"
 | |
| #include "llvm/Support/SourceMgr.h"
 | |
| using namespace llvm;
 | |
| 
 | |
| MCAsmParser::MCAsmParser() {
 | |
| }
 | |
| 
 | |
| MCAsmParser::~MCAsmParser() {
 | |
| }
 | |
| 
 | |
| const AsmToken &MCAsmParser::getTok() {
 | |
|   return getLexer().getTok();
 | |
| }
 | |
| 
 | |
| bool MCAsmParser::ParseExpression(const MCExpr *&Res) {
 | |
|   SMLoc L;
 | |
|   return ParseExpression(Res, L);
 | |
| }
 | |
| 
 | |
| /// getStartLoc - Get the location of the first token of this operand.
 | |
| SMLoc MCParsedAsmOperand::getStartLoc() const { return SMLoc(); }
 | |
| SMLoc MCParsedAsmOperand::getEndLoc() const { return SMLoc(); }
 | |
| 
 | |
| 
 |