mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-02 22:32:38 +00:00
15 lines
508 B
C++
15 lines
508 B
C++
|
//===-- llvm/Target/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/Target/TargetAsmLexer.h"
|
||
|
using namespace llvm;
|
||
|
|
||
|
TargetAsmLexer::TargetAsmLexer(const Target &T) : TheTarget(T) {}
|
||
|
TargetAsmLexer::~TargetAsmLexer() {}
|