Skip to content

Commit 2819c27

Browse files
committed
fixup! [AsmParser] Remove OperandMatchResultTy
1 parent 56c252e commit 2819c27

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

llvm/include/llvm/MC/MCParser/MCTargetAsmParser.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,9 +125,9 @@ struct ParseInstructionInfo {
125125
/// Ternary parse status returned by various parse* methods.
126126
class ParseStatus {
127127
enum class StatusTy {
128-
Success, // operand matched successfully
129-
Failure, // operand matched but had errors
130-
NoMatch // operand did not match
128+
Success, // Parsing Succeeded
129+
Failure, // Parsing Failed after consuming some tokens
130+
NoMatch, // Parsing Failed without consuming any tokens
131131
} Status;
132132

133133
public:

0 commit comments

Comments
 (0)