This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c/52732] New: __builtin_bswapXX doesn't work with printf format
- From: "hjl.tools at gmail dot com" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: Mon, 26 Mar 2012 22:06:44 +0000
- Subject: [Bug c/52732] New: __builtin_bswapXX doesn't work with printf format
- Auto-submitted: auto-generated
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52732
Bug #: 52732
Summary: __builtin_bswapXX doesn't work with printf format
Classification: Unclassified
Product: gcc
Version: 4.7.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c
AssignedTo: unassigned@gcc.gnu.org
ReportedBy: hjl.tools@gmail.com
Somehow, GCC gets very confused:
[hjl@gnu-6 gcc]$ cat /tmp/f.c
#include <stdio.h>
void
foo (int x, long y)
{
printf ("%u\n", __builtin_bswap32 (x));
printf ("%u\n", x);
printf ("%lu\n", __builtin_bswap64 (x));
printf ("%lu\n", y);
}
[hjl@gnu-6 gcc]$ ./xgcc -B./ -Wall -c /tmp/f.c
/tmp/f.c: In function âfooâ:
/tmp/f.c:6:3: warning: format â%uâ expects argument of type âunsigned intâ, but
argument 2 has type âunsigned intâ [-Wformat]
/tmp/f.c:8:3: warning: format â%luâ expects argument of type âlong unsigned
intâ, but argument 2 has type âlong unsigned intâ [-Wformat]
[hjl@gnu-6 gcc]$