@@ -157,7 +157,7 @@ class ai_baset
157157 const goto_functionst::goto_functiont &goto_function,
158158 std::ostream &out) const
159159 {
160- output (ns, " " , goto_function.body , out);
160+ output (ns, irep_idt () , goto_function.body , out);
161161 }
162162
163163 // / Output the abstract states for the whole program as JSON
@@ -178,15 +178,15 @@ class ai_baset
178178 const namespacet &ns,
179179 const goto_programt &goto_program) const
180180 {
181- return output_json (ns, " " , goto_program);
181+ return output_json (ns, irep_idt () , goto_program);
182182 }
183183
184184 // / Output the abstract states for a single function as JSON
185185 jsont output_json (
186186 const namespacet &ns,
187187 const goto_functionst::goto_functiont &goto_function) const
188188 {
189- return output_json (ns, " " , goto_function.body );
189+ return output_json (ns, irep_idt () , goto_function.body );
190190 }
191191
192192 // / Output the abstract states for the whole program as XML
@@ -207,15 +207,15 @@ class ai_baset
207207 const namespacet &ns,
208208 const goto_programt &goto_program) const
209209 {
210- return output_xml (ns, " " , goto_program);
210+ return output_xml (ns, irep_idt () , goto_program);
211211 }
212212
213213 // / Output the abstract states for a single function as XML
214214 xmlt output_xml (
215215 const namespacet &ns,
216216 const goto_functionst::goto_functiont &goto_function) const
217217 {
218- return output_xml (ns, " " , goto_function.body );
218+ return output_xml (ns, irep_idt () , goto_function.body );
219219 }
220220
221221protected:
0 commit comments