aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-06-19 00:47:59 +0000
committerChris Lattner <sabre@nondot.org>2009-06-19 00:47:59 +0000
commitb4fa71968179cccd83033e09526e56f3d862031d (patch)
tree29f068b0d1bf7fbadd7edbd57115f5fd413ba695 /lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp
parent19b1bd55b7d1bb19fa2e9731b00fcc77d2164bd2 (diff)
downloadexternal_llvm-b4fa71968179cccd83033e09526e56f3d862031d.tar.gz
external_llvm-b4fa71968179cccd83033e09526e56f3d862031d.tar.bz2
external_llvm-b4fa71968179cccd83033e09526e56f3d862031d.zip
add a file I missed, this goes with r73743
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73744 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp')
-rw-r--r--lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp b/lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp
new file mode 100644
index 0000000000..3b78d7dedf
--- /dev/null
+++ b/lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp
@@ -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