Fixed some bugs.
[llvm/zpu.git] / lib / Target / X86 / InstPrinter / X86InstComments.h
blob6b86db4f9e5c97ad700fe6c42465fbf1fd9f1b42
1 //===-- X86InstComments.h - Generate verbose-asm comments for instrs ------===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This defines functionality used to emit comments about X86 instructions to
11 // an output stream for -fverbose-asm.
13 //===----------------------------------------------------------------------===//
15 #ifndef X86_INST_COMMENTS_H
16 #define X86_INST_COMMENTS_H
18 namespace llvm {
19 class MCInst;
20 class raw_ostream;
21 void EmitAnyX86InstComments(const MCInst *MI, raw_ostream &OS,
22 const char *(*getRegName)(unsigned));
25 #endif