Tidy up trailing whitespace.
authorJim Grosbach <grosbach@apple.com>
Mon, 15 Aug 2011 17:30:25 +0000 (17:30 +0000)
committerJim Grosbach <grosbach@apple.com>
Mon, 15 Aug 2011 17:30:25 +0000 (17:30 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@137619 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/MC/MCTargetAsmParser.h

index 0bd4f25636ba9847b3faf9d97a1c53bc0c612b5a..0166f2327d6798b7dbe72c3c689ee6adf5052768 100644 (file)
@@ -26,7 +26,7 @@ class MCTargetAsmParser : public MCAsmParserExtension {
   void operator=(const MCTargetAsmParser &);  // DO NOT IMPLEMENT
 protected: // Can only create subclasses.
   MCTargetAsmParser();
+
   /// AvailableFeatures - The current set of available features.
   unsigned AvailableFeatures;
 
@@ -66,18 +66,18 @@ public:
   ///
   /// \param DirectiveID - the identifier token of the directive.
   virtual bool ParseDirective(AsmToken DirectiveID) = 0;
-  
+
   /// MatchAndEmitInstruction - Recognize a series of operands of a parsed
   /// instruction as an actual MCInst and emit it to the specified MCStreamer.
   /// This returns false on success and returns true on failure to match.
   ///
   /// On failure, the target parser is responsible for emitting a diagnostic
   /// explaining the match failure.
-  virtual bool 
+  virtual bool
   MatchAndEmitInstruction(SMLoc IDLoc,
                           SmallVectorImpl<MCParsedAsmOperand*> &Operands,
                           MCStreamer &Out) = 0;
-  
+
 };
 
 } // End llvm namespace