| 916 | } |
| 917 | |
| 918 | Pointer Pointer::setAttrs(const ParamAttrs &attr) const { |
| 919 | return { m, getBid(), getOffset(), getAttrs() | attr_to_bitvec(attr) }; |
| 920 | } |
| 921 | |
| 922 | Pointer Pointer::setIsBasedOnArg() const { |
| 923 | unsigned idx = (unsigned)has_nocapture + (unsigned)has_noread + |
no test coverage detected