mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-08 21:32:39 +00:00
22 lines
709 B
C++
22 lines
709 B
C++
|
//===-- X86ATTInstPrinter.cpp - AT&T assembly instruction printing --------===//
|
||
|
//
|
||
|
// The LLVM Compiler Infrastructure
|
||
|
//
|
||
|
// This file is distributed under the University of Illinois Open Source
|
||
|
// License. See LICENSE.TXT for details.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
//
|
||
|
// This file includes code for rendering MCInst instances as AT&T-style
|
||
|
// assembly.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
|
||
|
#define DEBUG_TYPE "asm-printer"
|
||
|
#include "llvm/MC/MCInst.h"
|
||
|
#include "X86ATTAsmPrinter.h"
|
||
|
using namespace llvm;
|
||
|
|
||
|
bool X86ATTAsmPrinter::printInstruction(const MCInst &TmpInst) {
|
||
|
return true;
|
||
|
}
|