forked from OSchip/llvm-project
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;
|
|
} |