summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJim Grosbach <grosbach@apple.com>2010-09-17 21:23:56 +0000
committerJim Grosbach <grosbach@apple.com>2010-09-17 21:23:56 +0000
commitfd2eaed4f0a9375071a448993c573a124370ed34 (patch)
tree5aba061040ef1b10bc7651124241289e3cabff9d /include
parent1aaf4cb3938a1587ff4d6af4e04524636322d48a (diff)
downloadllvm-fd2eaed4f0a9375071a448993c573a124370ed34.tar.gz
llvm-fd2eaed4f0a9375071a448993c573a124370ed34.tar.bz2
llvm-fd2eaed4f0a9375071a448993c573a124370ed34.tar.xz
trailing whitespace
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114211 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/MC/MCInstPrinter.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/MC/MCInstPrinter.h b/include/llvm/MC/MCInstPrinter.h
index 4839a83dba..96716c775f 100644
--- a/include/llvm/MC/MCInstPrinter.h
+++ b/include/llvm/MC/MCInstPrinter.h
@@ -28,21 +28,21 @@ protected:
public:
MCInstPrinter(const MCAsmInfo &mai)
: CommentStream(0), MAI(mai) {}
-
+
virtual ~MCInstPrinter();
/// setCommentStream - Specify a stream to emit comments to.
void setCommentStream(raw_ostream &OS) { CommentStream = &OS; }
-
+
/// printInst - Print the specified MCInst to the specified raw_ostream.
///
virtual void printInst(const MCInst *MI, raw_ostream &OS) = 0;
-
+
/// getOpcodeName - Return the name of the specified opcode enum (e.g.
/// "MOV32ri") or empty if we can't resolve it.
virtual StringRef getOpcodeName(unsigned Opcode) const;
};
-
+
} // namespace llvm
#endif