2010-07-12 19:27:45 +02:00
|
|
|
//===-- 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;
|
|
|
|
|
2011-02-24 22:59:22 +01:00
|
|
|
MCAsmParserExtension::MCAsmParserExtension() :
|
|
|
|
BracketExpressionsSupported(false) {
|
2010-07-12 19:27:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
MCAsmParserExtension::~MCAsmParserExtension() {
|
|
|
|
}
|
|
|
|
|
|
|
|
void MCAsmParserExtension::Initialize(MCAsmParser &Parser) {
|
|
|
|
this->Parser = &Parser;
|
|
|
|
}
|