We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e2302b commit 4a019f6Copy full SHA for 4a019f6
src/util/format_expr.cpp
@@ -134,6 +134,8 @@ static std::ostream &format_rec(
134
return os << src.get_value();
135
else if(type == ID_floatbv)
136
return os << ieee_floatt(src);
137
+ else if(type == ID_pointer && (src.is_zero() || src.get_value() == ID_NULL))
138
+ return os << src.get_value();
139
else
140
return os << src.pretty();
141
}
0 commit comments