We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56c252e commit 2819c27Copy full SHA for 2819c27
llvm/include/llvm/MC/MCParser/MCTargetAsmParser.h
@@ -125,9 +125,9 @@ struct ParseInstructionInfo {
125
/// Ternary parse status returned by various parse* methods.
126
class ParseStatus {
127
enum class StatusTy {
128
- Success, // operand matched successfully
129
- Failure, // operand matched but had errors
130
- NoMatch // operand did not match
+ Success, // Parsing Succeeded
+ Failure, // Parsing Failed after consuming some tokens
+ NoMatch, // Parsing Failed without consuming any tokens
131
} Status;
132
133
public:
0 commit comments