Evan Cheng | 94b9550 | 2011-07-26 00:24:13 +0000 | [diff] [blame^] | 1 | //===-- llvm/MC/MCTargetAsmLexer.cpp - Target Assembly Lexer --------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
| 10 | #include "llvm/MC/MCTargetAsmLexer.h" |
| 11 | using namespace llvm; |
| 12 | |
| 13 | MCTargetAsmLexer::MCTargetAsmLexer(const Target &T) |
| 14 | : TheTarget(T), Lexer(NULL) { |
| 15 | } |
| 16 | MCTargetAsmLexer::~MCTargetAsmLexer() {} |