Deleted Added
full compact
1323,1324c1323,1329
< tree decl = declare_local_label (name);
< add_decl_expr (decl);
---
> if (!at_function_scope_p ())
> {
> error ("__label__ declarations are only allowed in function scopes");
> return;
> }
>
> add_decl_expr (declare_local_label (name));