summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/smt/smt_engine.cpp2
-rw-r--r--src/util/array_store_all.h2
2 files changed, 1 insertions, 3 deletions
diff --git a/src/smt/smt_engine.cpp b/src/smt/smt_engine.cpp
index 7f9658ba0..015e6a4f4 100644
--- a/src/smt/smt_engine.cpp
+++ b/src/smt/smt_engine.cpp
@@ -4125,8 +4125,6 @@ void SmtEngine::pop() throw(ModalException) {
<< d_userContext->getLevel() << endl;
// FIXME: should we reset d_status here?
// SMT-LIBv2 spec seems to imply no, but it would make sense to..
- // Still, we want the right exit status after any final sequence
- // of pops... hm.
}
void SmtEngine::internalPush() {
diff --git a/src/util/array_store_all.h b/src/util/array_store_all.h
index bccefdd58..b1d624266 100644
--- a/src/util/array_store_all.h
+++ b/src/util/array_store_all.h
@@ -46,7 +46,7 @@ public:
// because this check is done in production builds too
CheckArgument(type.isArray(), type, "array store-all constants can only be created for array types, not `%s'", type.toString().c_str());
- CheckArgument(expr.getType().isSubtypeOf(type.getConstituentType()), expr, "expr type `%s' does not match constituent type of array type `%s'", expr.getType().toString().c_str(), type.toString().c_str());
+ CheckArgument(expr.getType().isComparableTo(type.getConstituentType()), expr, "expr type `%s' does not match constituent type of array type `%s'", expr.getType().toString().c_str(), type.toString().c_str());
CheckArgument(expr.isConst(), expr, "ArrayStoreAll requires a constant expression");
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback