Skip to content

Commit d9cce39

Browse files
committed
fix: pointer expression in metasmtbuilder
1 parent c17922e commit d9cce39

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/Solver/MetaSMTBuilder.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -658,7 +658,7 @@ MetaSMTBuilder<SolverContext>::constructActual(ref<Expr> e, int *width_out) {
658658
switch (e->getKind()) {
659659
case Expr::Pointer:
660660
case Expr::ConstantPointer: {
661-
assert(0 && "unreachable");
661+
return constructActual(e->getValue(), width_out);
662662
}
663663

664664
case Expr::Constant: {

0 commit comments

Comments
 (0)