| 24 | } |
| 25 | |
| 26 | StateValue StateValue::trunc(unsigned bw_val, unsigned bw_np) const { |
| 27 | return { value.trunc(bw_val), |
| 28 | non_poison.isBool() ? expr(non_poison) : non_poison.trunc(bw_np) }; |
| 29 | } |
| 30 | |
| 31 | StateValue StateValue::zextOrTrunc(unsigned tobw) const { |
| 32 | return |
no test coverage detected