You've already forked llvm-project
mirror of
https://github.com/encounter/llvm-project.git
synced 2026-03-30 11:27:19 -07:00
4b6ff6b86e
llvm-svn: 294685
21 lines
621 B
C++
21 lines
621 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() = default;
|
|
|
|
MCAsmParserExtension::~MCAsmParserExtension() = default;
|
|
|
|
void MCAsmParserExtension::Initialize(MCAsmParser &Parser) {
|
|
this->Parser = &Parser;
|
|
}
|