diff options
author | Chao-ying Fu <fu@mips.com> | 2007-08-30 23:05:17 +0000 |
---|---|---|
committer | Chao-ying Fu <chaoyingfu@gcc.gnu.org> | 2007-08-30 23:05:17 +0000 |
commit | ac6b1c676c9713beb3cfe1ac663c60317c57e1f6 (patch) | |
tree | f4c07ef719ac366d9d8400e5386ecb0c3d84690c /libcpp/ChangeLog | |
parent | 07368af0833c1bfc29e35a1eabb4f269eafd8825 (diff) | |
download | gcc-ac6b1c676c9713beb3cfe1ac663c60317c57e1f6.zip gcc-ac6b1c676c9713beb3cfe1ac663c60317c57e1f6.tar.gz gcc-ac6b1c676c9713beb3cfe1ac663c60317c57e1f6.tar.bz2 |
expr.c (interpret_float_suffix): Support hr, r, lr, llr, uhr, ur, ulr, ullr, hk, k, lk, llk, uhk, uk, ulk, ullk.
* expr.c (interpret_float_suffix): Support hr, r, lr, llr, uhr, ur,
ulr, ullr, hk, k, lk, llk, uhk, uk, ulk, ullk.
(cpp_classify_number): Support decimal fixed-point constants without
exponents.
Warn about fixed-point constants when -pedantic.
* include/cpplib.h (CPP_N_SMALL, CPP_N_MEDIUM, CPP_N_LARGE): Change
comments to support fixed-point values.
(CPP_N_FRACT, CPP_N_ACCUM): Define.
From-SVN: r127940
Diffstat (limited to 'libcpp/ChangeLog')
-rw-r--r-- | libcpp/ChangeLog | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libcpp/ChangeLog b/libcpp/ChangeLog index 7e8dfd5a..c24f47e 100644 --- a/libcpp/ChangeLog +++ b/libcpp/ChangeLog @@ -1,3 +1,14 @@ +2007-08-30 Chao-ying Fu <fu@mips.com> + + * expr.c (interpret_float_suffix): Support hr, r, lr, llr, uhr, ur, + ulr, ullr, hk, k, lk, llk, uhk, uk, ulk, ullk. + (cpp_classify_number): Support decimal fixed-point constants without + exponents. + Warn about fixed-point constants when -pedantic. + * include/cpplib.h (CPP_N_SMALL, CPP_N_MEDIUM, CPP_N_LARGE): Change + comments to support fixed-point values. + (CPP_N_FRACT, CPP_N_ACCUM): Define. + 2007-08-18 Tom Tromey <tromey@redhat.com> PR preprocessor/32974: |