| 204 | |
| 205 | |
| 206 | pair<DataBuffer, BNBuiltinType> ConstantData::ToDataBuffer() const |
| 207 | { |
| 208 | if (func) |
| 209 | return func->GetConstantData(state, value, size); |
| 210 | |
| 211 | return make_pair(DataBuffer(), BuiltinNone); |
| 212 | } |
| 213 | |
| 214 | |
| 215 | RegisterValue ConstantData::ToRegisterValue() const |
no test coverage detected