mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-24 04:09:45 +00:00
c51124b83c
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@294685 91177308-0d34-0410-b5e6-96231b3b80d8
30 lines
906 B
C++
30 lines
906 B
C++
//===-- MCTargetAsmParser.cpp - Target Assembly Parser --------------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm/MC/MCContext.h"
|
|
#include "llvm/MC/MCParser/MCTargetAsmParser.h"
|
|
|
|
using namespace llvm;
|
|
|
|
MCTargetAsmParser::MCTargetAsmParser(MCTargetOptions const &MCOptions,
|
|
const MCSubtargetInfo &STI)
|
|
: MCOptions(MCOptions), STI(&STI) {}
|
|
|
|
MCTargetAsmParser::~MCTargetAsmParser() = default;
|
|
|
|
MCSubtargetInfo &MCTargetAsmParser::copySTI() {
|
|
MCSubtargetInfo &STICopy = getContext().getSubtargetCopy(getSTI());
|
|
STI = &STICopy;
|
|
return STICopy;
|
|
}
|
|
|
|
const MCSubtargetInfo &MCTargetAsmParser::getSTI() const {
|
|
return *STI;
|
|
}
|