aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Stallman <rms@gnu.org>1992-09-17 19:47:09 +0000
committerRichard Stallman <rms@gnu.org>1992-09-17 19:47:09 +0000
commit0e14ddbcfcb10939d300cd2ecc530459af1979a1 (patch)
tree5b268ad03eac4aef227872286323cf05ee5739bc /gcc
parentf396d2783cc9ceff0016fa9352c6133ca69766a3 (diff)
downloadgcc-0e14ddbcfcb10939d300cd2ecc530459af1979a1.zip
gcc-0e14ddbcfcb10939d300cd2ecc530459af1979a1.tar.gz
gcc-0e14ddbcfcb10939d300cd2ecc530459af1979a1.tar.bz2
Comment added.
From-SVN: r2146
Diffstat (limited to 'gcc')
-rw-r--r--gcc/gcc.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/gcc.c b/gcc/gcc.c
index f29a76e..c7c1e07 100644
--- a/gcc/gcc.c
+++ b/gcc/gcc.c
@@ -356,6 +356,8 @@ proper position among the other output files. */
/* This spec is used for telling cpp whether char is signed or not. */
#ifndef SIGNED_CHAR_SPEC
+/* Use #if rather than ?:
+ because MIPS C compiler rejects like ?: in initializers. */
#if DEFAULT_SIGNED_CHAR
#define SIGNED_CHAR_SPEC "%{funsigned-char:-D__CHAR_UNSIGNED__}"
#else