2017-02-10 09:33:54 +08:00
|
|
|
//===- MCAsmParserExtension.cpp - Asm Parser Hooks ------------------------===//
|
2010-07-13 01:27:45 +08:00
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2010-07-13 01:27:45 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#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;
|
|
|
|
}
|