Skip to content

Commit a7f834a

Browse files
authored
Merge pull request diffblue#376 from diffblue/bug/LVSA_export_rhs_null
Allowing RHS null objects to be exported
2 parents 304ea08 + ddb3463 commit a7f834a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pointer-analysis/local_value_set_analysis.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -824,7 +824,7 @@ void lvsaa_single_external_set_summaryt::from_final_state(
824824
if(escaped_dynamic_objects.count(object_number))
825825
export_this_expr = true;
826826
}
827-
else if(toexport->id() == ID_symbol)
827+
else if(toexport->id() == ID_symbol || toexport->id() == "NULL-object")
828828
export_this_expr = true;
829829

830830
if(!export_this_expr)

0 commit comments

Comments
 (0)