mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
AsmMatcher: Add a comment.
llvm-svn: 94261
This commit is contained in:
parent
7ce9006ba0
commit
a0ef4e4068
@ -465,6 +465,10 @@ struct InstructionInfo {
|
||||
if (Operands.size() != RHS.Operands.size())
|
||||
return false;
|
||||
|
||||
// Otherwise, make sure the ordering of the two instructions is unambiguous
|
||||
// by checking that either (a) a token or operand kind discriminates them,
|
||||
// or (b) the ordering among equivalent kinds is consistent.
|
||||
|
||||
// Tokens and operand kinds are unambiguous (assuming a correct target
|
||||
// specific parser).
|
||||
for (unsigned i = 0, e = Operands.size(); i != e; ++i)
|
||||
|
Loading…
Reference in New Issue
Block a user