diff options
author | Andrew Cagney <cagney@redhat.com> | 2001-03-14 16:42:30 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2001-03-14 16:42:30 +0000 |
commit | 5bb367b1d911e5893a504ebd2ac301f55cd3ec79 (patch) | |
tree | 59ab5aed48339cc88c8792a7741b007f46346d5b /gdb/hppa-tdep.c | |
parent | David Mosberger's fixes for cross compiling gprof. (diff) | |
download | binutils-gdb-5bb367b1d911e5893a504ebd2ac301f55cd3ec79.tar.gz binutils-gdb-5bb367b1d911e5893a504ebd2ac301f55cd3ec79.tar.bz2 binutils-gdb-5bb367b1d911e5893a504ebd2ac301f55cd3ec79.zip |
Eliminate some uses of __STDC__.
Diffstat (limited to 'gdb/hppa-tdep.c')
-rw-r--r-- | gdb/hppa-tdep.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/gdb/hppa-tdep.c b/gdb/hppa-tdep.c index 3b5ee347db9..3a879088cde 100644 --- a/gdb/hppa-tdep.c +++ b/gdb/hppa-tdep.c @@ -4524,11 +4524,7 @@ unwind_command (char *exp, int from_tty) printf_unfiltered ("\n\tregion_end = "); print_address (u->region_end, gdb_stdout); -#ifdef __STDC__ #define pif(FLD) if (u->FLD) printf_unfiltered (" "#FLD); -#else -#define pif(FLD) if (u->FLD) printf_unfiltered (" FLD"); -#endif printf_unfiltered ("\n\tflags ="); pif (Cannot_unwind); @@ -4553,11 +4549,7 @@ unwind_command (char *exp, int from_tty) putchar_unfiltered ('\n'); -#ifdef __STDC__ #define pin(FLD) printf_unfiltered ("\t"#FLD" = 0x%x\n", u->FLD); -#else -#define pin(FLD) printf_unfiltered ("\tFLD = 0x%x\n", u->FLD); -#endif pin (Region_description); pin (Entry_FR); |