mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-26 13:10:34 +00:00
a7cfc08ebe
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@135833 91177308-0d34-0410-b5e6-96231b3b80d8
15 lines
517 B
C++
15 lines
517 B
C++
//===-- llvm/MC/TargetAsmLexer.cpp - Target Assembly Lexer ----------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm/MC/TargetAsmLexer.h"
|
|
using namespace llvm;
|
|
|
|
TargetAsmLexer::TargetAsmLexer(const Target &T) : TheTarget(T), Lexer(NULL) {}
|
|
TargetAsmLexer::~TargetAsmLexer() {}
|