LLVM API Documentation
00001 //===-- MCAsmParserExtension.cpp - Asm Parser Hooks -----------------------===// 00002 // 00003 // The LLVM Compiler Infrastructure 00004 // 00005 // This file is distributed under the University of Illinois Open Source 00006 // License. See LICENSE.TXT for details. 00007 // 00008 //===----------------------------------------------------------------------===// 00009 00010 #include "llvm/MC/MCParser/MCAsmParserExtension.h" 00011 using namespace llvm; 00012 00013 MCAsmParserExtension::MCAsmParserExtension() : 00014 BracketExpressionsSupported(false) { 00015 } 00016 00017 MCAsmParserExtension::~MCAsmParserExtension() { 00018 } 00019 00020 void MCAsmParserExtension::Initialize(MCAsmParser &Parser) { 00021 this->Parser = &Parser; 00022 }