[llvm-commits] [llvm] r114211 - /llvm/trunk/include/llvm/MC/MCInstPrinter.h

Jim Grosbach grosbach at apple.com
Fri Sep 17 14:23:56 PDT 2010


Author: grosbach
Date: Fri Sep 17 16:23:56 2010
New Revision: 114211

URL: http://llvm.org/viewvc/llvm-project?rev=114211&view=rev
Log:
trailing whitespace

Modified:
    llvm/trunk/include/llvm/MC/MCInstPrinter.h

Modified: llvm/trunk/include/llvm/MC/MCInstPrinter.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/MC/MCInstPrinter.h?rev=114211&r1=114210&r2=114211&view=diff
==============================================================================
--- llvm/trunk/include/llvm/MC/MCInstPrinter.h (original)
+++ llvm/trunk/include/llvm/MC/MCInstPrinter.h Fri Sep 17 16:23:56 2010
@@ -28,21 +28,21 @@
 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





More information about the llvm-commits mailing list