Re: [RFC] Documentation/CodingStyle: Add rules for goto labels

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



H. Peter Anvin wrote:
> goto labels are scoped in one sense: they are only reachable from inside
> the block they are defined in, so I would disagree with this statement.
>   

Erm, no I think you're wrong there (or we're talking at cross
purposes).  They're visible to the whole function they're defined in,
regardless of what block scope happens to be current at the time.  You
need to use the gcc "__label__" extension to make a locally-scoped
label.  Otherwise this wouldn't work:

	if (a_failed)
		goto cleanup;
	[...]
	if (b_failed) {
cleanup:
		cleanup();
	}


    J
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[Index of Archives]     [Kernel Newbies]     [Netfilter]     [Bugtraq]     [Photo]     [Stuff]     [Gimp]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Video 4 Linux]     [Linux for the blind]     [Linux Resources]
  Powered by Linux