Does this inst (an kInstByteRange) match c?
| 100 | |
| 101 | // Does this inst (an kInstByteRange) match c? |
| 102 | inline bool Matches(int c) { |
| 103 | DCHECK_EQ(opcode(), kInstByteRange); |
| 104 | if (foldcase() && 'A' <= c && c <= 'Z') |
| 105 | c += 'a' - 'A'; |
| 106 | return lo_ <= c && c <= hi_; |
| 107 | } |
| 108 | |
| 109 | // Returns string representation for debugging. |
| 110 | std::string Dump(); |
no outgoing calls
no test coverage detected