summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4>2000-10-29 19:34:53 +0000
committerjsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4>2000-10-29 19:34:53 +0000
commitea15b50177e3a7c10567e1cfe7b867ed411c3490 (patch)
tree01fc77620adcd4567052621a22d5a7442b123fec
parentb45dd3f3246a32b0075200134a86b2a399f772d4 (diff)
downloadgcc-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
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/fixinc/inclhack.def2
-rw-r--r--gcc/flags.h2
-rw-r--r--gcc/fold-const.c2
-rw-r--r--gcc/real.c2
-rw-r--r--gcc/rtl.c2
-rw-r--r--gcc/toplev.c2
7 files changed, 10 insertions, 6 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 0f12f3c9189..8bcfe30b010 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,9 @@
2000-10-29 Joseph S. Myers <jsm28@cam.ac.uk>
+ * toplev.c, flags.h, fold-const.c, real.c, rtl.c,
+ fixinc/inclhack.def: Change comments mentioning C9X to refer to
+ C99 instead.
+
* invoke.texi: Document that -V will only work for very similar
versions of driver and compiler.
diff --git a/gcc/fixinc/inclhack.def b/gcc/fixinc/inclhack.def
index b46121623ef..5688c6e8a6d 100644
--- a/gcc/fixinc/inclhack.def
+++ b/gcc/fixinc/inclhack.def
@@ -876,7 +876,7 @@ fix = {
/*
* Remove `extern double cabs' declarations from math.h.
- * This conflicts with C9x. Discovered on AIX.
+ * This conflicts with C99. Discovered on AIX.
* SunOS4 has its cabs() declaration followed by a comment which
* terminates on the following line.
*/
diff --git a/gcc/flags.h b/gcc/flags.h
index dec686dfe38..bc686e46e1a 100644
--- a/gcc/flags.h
+++ b/gcc/flags.h
@@ -337,7 +337,7 @@ extern int flag_errno_math;
/* 0 means straightforward implementation of complex divide acceptable.
1 means wide ranges of inputs must work for complex divide.
- 2 means C9X-like requirements for complex divide (not yet implemented). */
+ 2 means C99-like requirements for complex divide (not yet implemented). */
extern int flag_complex_divide_method;
diff --git a/gcc/fold-const.c b/gcc/fold-const.c
index efd1055b9e2..c5b29a47242 100644
--- a/gcc/fold-const.c
+++ b/gcc/fold-const.c
@@ -1042,7 +1042,7 @@ fail:
return 1;
}
-/* Convert C9X hexadecimal floating point string constant S. Return
+/* Convert C99 hexadecimal floating point string constant S. Return
real value type in mode MODE. This function uses the host computer's
floating point arithmetic when there is no REAL_ARITHMETIC. */
diff --git a/gcc/real.c b/gcc/real.c
index 6c09f753ce9..9df90402156 100644
--- a/gcc/real.c
+++ b/gcc/real.c
@@ -5122,7 +5122,7 @@ asctoe (s, y)
}
/* Convert ASCII string SS to e type Y, with a specified rounding precision
- of OPREC bits. BASE is 16 for C9X hexadecimal floating constants. */
+ of OPREC bits. BASE is 16 for C99 hexadecimal floating constants. */
static void
asctoeg (ss, y, oprec)
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);
diff --git a/gcc/toplev.c b/gcc/toplev.c
index f6a428820a2..4194b592afb 100644
--- a/gcc/toplev.c
+++ b/gcc/toplev.c
@@ -632,7 +632,7 @@ int flag_errno_math = 1;
/* 0 means straightforward implementation of complex divide acceptable.
1 means wide ranges of inputs must work for complex divide.
- 2 means C9X-like requirements for complex divide (not yet implemented). */
+ 2 means C99-like requirements for complex divide (not yet implemented). */
int flag_complex_divide_method = 0;