Bug#747345: impliedness of -Wunused-parameter depends on -W option ordering

2014-05-08 Thread Matthias Klose
This is now fixed in gcc-snapshot_20140508-1. Please confirm. -- To UNSUBSCRIBE, email to debian-gcc-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org Archive: https://lists.debian.org/536bf251.9080...@debian.org

Bug#747345: impliedness of -Wunused-parameter depends on -W option ordering

2014-05-07 Thread Ian Jackson
Package: gcc-4.8 Version: 4.8.2-21 Whether various combinations of options imply -Wunused-parameter in the presence of -Wno-unused depends on where on the command line -Wno-unused appears: sid$ cat tt.c void foo(int x) { } sid$ gcc -g -O2 -Wall -Wno-unused -W -c tt.c sid$ gcc -g -O2 -Wall -W