mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
ffe3934e57
classes which want to extend the basic asm parser. llvm-svn: 108158
22 lines
606 B
C++
22 lines
606 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() {
|
|
}
|
|
|
|
MCAsmParserExtension::~MCAsmParserExtension() {
|
|
}
|
|
|
|
void MCAsmParserExtension::Initialize(MCAsmParser &Parser) {
|
|
this->Parser = &Parser;
|
|
}
|