https://gcc.gnu.org/g:6f2bcc858bed75e47b770c937e39216980531e72
commit 6f2bcc858bed75e47b770c937e39216980531e72 Author: Mikael Morin <mik...@gcc.gnu.org> Date: Tue Jun 3 15:50:51 2025 +0200 gimple-exec: Correction indentation au retour des fonctions Diff: --- gcc/cgraphunit.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/cgraphunit.cc b/gcc/cgraphunit.cc index d10921f326d1..bcaffb5d9a98 100644 --- a/gcc/cgraphunit.cc +++ b/gcc/cgraphunit.cc @@ -4689,13 +4689,13 @@ exec_context::execute_function (struct function *func) bb = e->dest; } + printer.print_function_exit (func); if (final_stmt == nullptr) return {}; tree retexpr = gimple_return_retval (final_stmt); if (retexpr == NULL_TREE) return {}; data_value result = evaluate (retexpr); - printer.print_function_exit (func); return result; }