summaryrefslogtreecommitdiff
path: root/include/llvm/MC/MCTargetAsmParser.h
diff options
context:
space:
mode:
authorJim Grosbach <grosbach@apple.com>2011-08-15 17:30:25 +0000
committerJim Grosbach <grosbach@apple.com>2011-08-15 17:30:25 +0000
commitbb0752b040cfe206afeef7fa60e80dde91594fa1 (patch)
tree2e615184395df7d6dffbfdaf56faba074e1688d9 /include/llvm/MC/MCTargetAsmParser.h
parentdbc64af76d769596903485668a1dfc2d6640c4fb (diff)
downloadllvm-bb0752b040cfe206afeef7fa60e80dde91594fa1.tar.gz
llvm-bb0752b040cfe206afeef7fa60e80dde91594fa1.tar.bz2
llvm-bb0752b040cfe206afeef7fa60e80dde91594fa1.tar.xz
Tidy up trailing whitespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@137619 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/MC/MCTargetAsmParser.h')
-rw-r--r--include/llvm/MC/MCTargetAsmParser.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/MC/MCTargetAsmParser.h b/include/llvm/MC/MCTargetAsmParser.h
index 0bd4f25636..0166f2327d 100644
--- a/include/llvm/MC/MCTargetAsmParser.h
+++ b/include/llvm/MC/MCTargetAsmParser.h
@@ -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