aboutsummaryrefslogtreecommitdiff
path: root/libcpp
diff options
context:
space:
mode:
authorJoseph Myers <jsm28@gcc.gnu.org>2009-04-25 19:59:20 +0100
committerJoseph Myers <jsm28@gcc.gnu.org>2009-04-25 19:59:20 +0100
commit813b9e7e207682f15e79337a239a78d5b9c12d43 (patch)
tree9d5ad1c8517b100c6df153a69f6aa2c5fa08aba9 /libcpp
parent92f6fd0b80bedd1ed200c687f2c9f82e1c09cd1a (diff)
downloadgcc-813b9e7e207682f15e79337a239a78d5b9c12d43.zip
gcc-813b9e7e207682f15e79337a239a78d5b9c12d43.tar.gz
gcc-813b9e7e207682f15e79337a239a78d5b9c12d43.tar.bz2
Fix typo in comment in previous commit.
From-SVN: r146779
Diffstat (limited to 'libcpp')
-rw-r--r--libcpp/expr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcpp/expr.c b/libcpp/expr.c
index f65fae0..ecedb96 100644
--- a/libcpp/expr.c
+++ b/libcpp/expr.c
@@ -539,7 +539,7 @@ cpp_interpret_integer (cpp_reader *pfile, const cpp_token *token,
&& !num_positive (result, precision))
{
/* This is for constants within the range of uintmax_t but
- not that or intmax_t. For such decimal constants, a
+ not that of intmax_t. For such decimal constants, a
diagnostic is required for C99 as the selected type must
be signed and not having a type is a constraint violation
(DR#298, TC3), so this must be a pedwarn. For C90,