2011-07-26 02:24:13 +02:00
|
|
|
//===-- llvm/MC/MCTargetAsmLexer.cpp - Target Assembly Lexer --------------===//
|
2010-01-22 01:58:59 +01:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2011-07-26 02:24:13 +02:00
|
|
|
#include "llvm/MC/MCTargetAsmLexer.h"
|
2010-01-22 01:58:59 +01:00
|
|
|
using namespace llvm;
|
|
|
|
|
2011-07-26 02:24:13 +02:00
|
|
|
MCTargetAsmLexer::MCTargetAsmLexer(const Target &T)
|
|
|
|
: TheTarget(T), Lexer(NULL) {
|
|
|
|
}
|
|
|
|
MCTargetAsmLexer::~MCTargetAsmLexer() {}
|