| 8456 | } |
| 8457 | |
| 8458 | bool ValueType::isConst(nonneg int indirect) const |
| 8459 | { |
| 8460 | if (indirect > pointer) |
| 8461 | return false; |
| 8462 | return constness & (1 << (pointer - indirect)); |
| 8463 | } |
| 8464 | |
| 8465 | bool ValueType::isVolatile(nonneg int indirect) const |
| 8466 | { |
no outgoing calls