Skip to content

Commit ddb3463

Browse files
committed
Allowing RHS null objects to be exported
1 parent 7a6359c commit ddb3463

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
@@ -825,7 +825,7 @@ void lvsaa_single_external_set_summaryt::from_final_state(
825825
if(escaped_dynamic_objects.count(object_number))
826826
export_this_expr = true;
827827
}
828-
else if(toexport->id() == ID_symbol)
828+
else if(toexport->id() == ID_symbol || toexport->id() == "NULL-object")
829829
export_this_expr = true;
830830

831831
if(!export_this_expr)

0 commit comments

Comments
 (0)