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