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;
|
||
|
}
|