aboutsummaryrefslogtreecommitdiff
path: root/gcc/rtl.c
diff options
context:
space:
mode:
authorJoseph Myers <jsm28@cam.ac.uk>2000-10-29 19:34:53 +0000
committerJoseph Myers <jsm28@gcc.gnu.org>2000-10-29 19:34:53 +0000
commit526aba2811f2a0f3f4fd91d026995d2d46b62d43 (patch)
tree01fc77620adcd4567052621a22d5a7442b123fec /gcc/rtl.c
parent9f6ef6bcaf5716524e0b97c9ae07cdb885858cf3 (diff)
downloadgcc-526aba2811f2a0f3f4fd91d026995d2d46b62d43.zip
gcc-526aba2811f2a0f3f4fd91d026995d2d46b62d43.tar.gz
gcc-526aba2811f2a0f3f4fd91d026995d2d46b62d43.tar.bz2
toplev.c, [...]: Change comments mentioning C9X to refer to C99 instead.
* toplev.c, flags.h, fold-const.c, real.c, rtl.c, fixinc/inclhack.def: Change comments mentioning C9X to refer to C99 instead. From-SVN: r37127
Diffstat (limited to 'gcc/rtl.c')
-rw-r--r--gcc/rtl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/rtl.c b/gcc/rtl.c
index e4b2c48..bb986e9 100644
--- a/gcc/rtl.c
+++ b/gcc/rtl.c
@@ -1093,7 +1093,7 @@ read_rtx (infile)
#if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_LONG
tmp_wide = atol (tmp_char);
#else
- /* Prefer atoll over atoq, since the former is in the ISO C9X draft.
+ /* Prefer atoll over atoq, since the former is in the ISO C99 standard.
But prefer not to use our hand-rolled function above either. */
#if defined(HAVE_ATOLL) || !defined(HAVE_ATOQ)
tmp_wide = atoll (tmp_char);