diff options
author | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-10-29 19:34:53 +0000 |
---|---|---|
committer | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-10-29 19:34:53 +0000 |
commit | ea15b50177e3a7c10567e1cfe7b867ed411c3490 (patch) | |
tree | 01fc77620adcd4567052621a22d5a7442b123fec /gcc/rtl.c | |
parent | b45dd3f3246a32b0075200134a86b2a399f772d4 (diff) | |
download | gcc-ea15b50177e3a7c10567e1cfe7b867ed411c3490.tar.gz |
* toplev.c, flags.h, fold-const.c, real.c, rtl.c,
fixinc/inclhack.def: Change comments mentioning C9X to refer to
C99 instead.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37127 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/rtl.c')
-rw-r--r-- | gcc/rtl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/rtl.c b/gcc/rtl.c index e4b2c48ad33..bb986e998b9 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); |