We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d97393 commit 4701c0bCopy full SHA for 4701c0b
src/goto-programs/interpreter.cpp
@@ -894,8 +894,7 @@ typet interpretert::concretize_type(const typet &type)
894
}
895
else
896
{
897
- error() << "Failed to concretize variable array"
898
- << eom;
+ warning() << "Failed to concretize variable array" << eom;
899
900
901
return type;
src/goto-programs/interpreter_evaluate.cpp
@@ -1054,7 +1054,7 @@ void interpretert::evaluate(
1054
1055
if(expr.type().id()==ID_signedbv)
1056
1057
- error() << "Infinite size arrays not supported" << eom;
+ warning() << "Infinite size arrays not supported" << eom;
1058
return;
1059
1060
0 commit comments