This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug c/52732] New: __builtin_bswapXX doesn't work with printf format


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]$


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]