//===- AsmParser.cpp - Parser for Assembly Files --------------------------===////// The LLVM Compiler Infrastructure//// This file is distributed under the University of Illinois Open Source// License. See LICENSE.TXT for details.////===----------------------------------------------------------------------===////// This class implements the parser for assembly files.////===----------------------------------------------------------------------===//#include"AsmParser.h"#include"AsmExpr.h"#include"llvm/ADT/Twine.h"#include"llvm/MC/MCContext.h"#include"llvm/MC/MCInst.h"#include"llvm/MC/MCSectionMachO.h"#include"llvm/MC/MCStreamer.h"#include"llvm/MC/MCSymbol.h"#include"llvm/Support/SourceMgr.h"#include"llvm/Support/raw_ostream.h"