diff options
| author | Lee Duhem <lee.duhem@gmail.com> | 2014-12-15 16:32:08 +0800 |
|---|---|---|
| committer | Lee Duhem <lee.duhem@gmail.com> | 2014-12-15 16:32:08 +0800 |
| commit | 5a76c5d2f39ad087b5153d458503caabb871c513 (patch) | |
| tree | 5958d4e0b7b521603c13ee6e571ee7b93dce8166 /tests/tests2/Makefile | |
| parent | 20a5845a4789f7c4fee8126584dcf25fc75c391f (diff) | |
| download | tinycc-5a76c5d2f39ad087b5153d458503caabb871c513.tar.gz tinycc-5a76c5d2f39ad087b5153d458503caabb871c513.tar.bz2 | |
Fix parsing of binary floating point number
* tccpp.c (parse_number): `shift' should be 1 while parsing binary
floating point number.
* tests/tests2/70_floating_point_literals.c: New test cases for
floating point number parsing.
Diffstat (limited to 'tests/tests2/Makefile')
| -rw-r--r-- | tests/tests2/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/tests2/Makefile b/tests/tests2/Makefile index 924f03c..8e11f2c 100644 --- a/tests/tests2/Makefile +++ b/tests/tests2/Makefile @@ -88,7 +88,8 @@ TESTS = \ 66_macro_concat_end.test \ 67_macro_concat.test \ 68_macro_param_list_err_1.test \ - 69_macro_param_list_err_2.test + 69_macro_param_list_err_2.test \ + 70_floating_point_literals.test # 34_array_assignment.test -- array assignment is not in C standard |
