Update an SIValue's allocation type to the provided value. */
| 210 | |
| 211 | /* Update an SIValue's allocation type to the provided value. */ |
| 212 | inline void SIValue_SetAllocationType(SIValue *v, SIAllocation allocation) { |
| 213 | v->allocation = allocation; |
| 214 | } |
| 215 | |
| 216 | inline bool SIValue_IsNull(SIValue v) { |
| 217 | return v.type == T_NULL; |
no outgoing calls
no test coverage detected