BitVecMustInsert
Description
Aborting variant of BitVecInsert. See that macro for parameter semantics and success-state effects.
Success
Returns to the caller. The underlying BitVecInsert call succeeded; see BitVecInsert for the post-state.
Failure
Does not return - aborts via LOG_FATAL / SysAbort when the underlying BitVecInsert call returns false.
Usage example (Cross-references)
Usage examples (Cross-references)
- In
Insert.h:99:
do { \
if (!BitVecInsert((bv), (idx), (value))) { \
LOG_FATAL("BitVecMustInsert failed"); \
} \
} while (0)
Last updated on