Mercurial > hg > Members > tobaru > cbc > CbC_llvm
view lib/MC/MCParser/MCTargetAsmParser.cpp @ 95:afa8332a0e37
LLVM 3.8
author | Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 13 Oct 2015 17:48:58 +0900 |
parents | 95c75e76d11b |
children | 7d135dc70f03 |
line wrap: on
line source
//===-- 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/MCTargetAsmParser.h" using namespace llvm; MCTargetAsmParser::MCTargetAsmParser(MCTargetOptions const &MCOptions) : AvailableFeatures(0), ParsingInlineAsm(false), MCOptions(MCOptions) { } MCTargetAsmParser::~MCTargetAsmParser() { }