diff --git a/src/script_opt/Reduce.cc b/src/script_opt/Reduce.cc index 91518bba97..5e7adb7e41 100644 --- a/src/script_opt/Reduce.cc +++ b/src/script_opt/Reduce.cc @@ -113,11 +113,7 @@ NameExprPtr Reducer::PushInlineBlock(TypePtr type) if ( ! type || type->Tag() == TYPE_VOID ) return nullptr; - char buf[8192]; - int n = new_locals.size(); - snprintf(buf, sizeof buf, "@retvar"); - - IDPtr ret_id = install_ID(buf, "", false, false); + IDPtr ret_id = install_ID("@retvar", "", false, false); ret_id->SetType(type); // Track this as a new local *if* we're in the outermost inlining