2017-02-10 09:33:54 +08:00
|
|
|
//===- MCAsmParserExtension.cpp - Asm Parser Hooks ------------------------===//
|
2010-07-13 01:27:45 +08:00
|
|
|
//
|
|
|
|
// 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"
|
2017-02-10 09:33:54 +08:00
|
|
|
|
2010-07-13 01:27:45 +08:00
|
|
|
using namespace llvm;
|
|
|
|
|
2017-02-10 09:33:54 +08:00
|
|
|
MCAsmParserExtension::MCAsmParserExtension() = default;
|
2010-07-13 01:27:45 +08:00
|
|
|
|
2017-02-10 09:33:54 +08:00
|
|
|
MCAsmParserExtension::~MCAsmParserExtension() = default;
|
2010-07-13 01:27:45 +08:00
|
|
|
|
|
|
|
void MCAsmParserExtension::Initialize(MCAsmParser &Parser) {
|
|
|
|
this->Parser = &Parser;
|
|
|
|
}
|