| 1350 | /* Return true if STR is of the form "PATTERN" or "PATTERNDELIM...". */ |
| 1351 | |
| 1352 | ATTRIBUTE_PURE |
| 1353 | static bool |
| 1354 | operand_matches (char const *str, char const *pattern, char delim) |
| 1355 | { |
| 1356 | while (*pattern) |
| 1357 | if (*str++ != *pattern++) |
| 1358 | return false; |
| 1359 | return !*str || *str == delim; |
| 1360 | } |
| 1361 | |
| 1362 | /* Interpret one "conv=..." or similar operand STR according to the |
| 1363 | symbols in TABLE, returning the flags specified. If the operand |
no outgoing calls
no test coverage detected