Do not use CC_HAS_LONG_LONG
authorTom Tromey <tromey@adacore.com>
Fri, 7 Jan 2022 21:00:33 +0000 (14:00 -0700)
committerTom Tromey <tromey@adacore.com>
Fri, 7 Jan 2022 21:00:33 +0000 (14:00 -0700)
ax.cc checks CC_HAS_LONG_LONG, but nothing defines this.  However,
PRINTF_HAS_LONG_LONG is checked in configure.  This patch removes the
former and keeps the latter.  This is PR remote/14976 (filed by me in
2012, lol).

I'm checking this in.

Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=14976

gdbserver/ax.cc

index f0c624c97df54a4281ef3bd01e5fcb662aa11a3e..d2d003377e0dcdb762648486ef37e21c8e9141bd 100644 (file)
@@ -878,7 +878,7 @@ ax_printf (CORE_ADDR fn, CORE_ADDR chan, const char *format,
            break;
 
          case long_long_arg:
-#if defined (CC_HAS_LONG_LONG) && defined (PRINTF_HAS_LONG_LONG)
+#if defined (PRINTF_HAS_LONG_LONG)
            {
              long long val = args[i];