[llvm-commits] [llvm] r73744 - /llvm/trunk/lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp

Chris Lattner sabre at nondot.org
Thu Jun 18 17:48:00 PDT 2009


Author: lattner
Date: Thu Jun 18 19:47:59 2009
New Revision: 73744

URL: http://llvm.org/viewvc/llvm-project?rev=73744&view=rev
Log:
add a file I missed, this goes with r73743

Added:
    llvm/trunk/lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp

Added: llvm/trunk/lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp?rev=73744&view=auto

==============================================================================
--- llvm/trunk/lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp (added)
+++ llvm/trunk/lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp Thu Jun 18 19:47:59 2009
@@ -0,0 +1,22 @@
+//===-- 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;
+}
\ No newline at end of file





More information about the llvm-commits mailing list