Re: New gcc-3.1 packages (including gnat)

2002-04-14 Thread David Starner
> Is there a small package with Ada source packaged for Debian, which > can be used as a test case? Maybe not hello-world, but something with > more than one module. music123 should work fine for that. The last release was about 1000 lines of code. -- David Starner - [EMAIL PROTECTED] "It's not

Bug#142844: gcc: dead code removal in switch() broken

2002-04-14 Thread Alexander Viro
Package: gcc-2.95 Version: 2.95.4-5 [EMAIL PROTECTED]:/tmp$ cat b.c int x; main() { unsigned long n; switch (x) { case 6: n = 32; break; case 5: case 7: case 8: case 11: n = 128; break; } x = 0; printf("%d\n", x); } [EMAIL