diff options
| author | Tim Chevalier <chevalier@alum.wellesley.edu> | 2011-03-24 17:12:24 -0700 |
|---|---|---|
| committer | Tim Chevalier <chevalier@alum.wellesley.edu> | 2011-03-25 11:20:30 -0700 |
| commit | a47cd50dfb9b8d88abea0baf4122e454d82e09e9 (patch) | |
| tree | 0a6d53f38d5ef5fc32d4cb78ec125606cd2b328e /src/rt | |
| parent | e2d6475308481a43facb0e95e9535c5602bf54f2 (diff) | |
| download | rust-a47cd50dfb9b8d88abea0baf4122e454d82e09e9.tar.gz rust-a47cd50dfb9b8d88abea0baf4122e454d82e09e9.zip | |
Parse FP literals without coercing to int. This allows parsing 64-bit
floats. However, if someone writes a literal that can't be represented precisely in 64 bits, the front-end will accept it while the back-end will (presumably) complain.
Diffstat (limited to 'src/rt')
| -rw-r--r-- | src/rt/rustrt.def.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rt/rustrt.def.in b/src/rt/rustrt.def.in index 5f9300f7ca9..cf10a402c48 100644 --- a/src/rt/rustrt.def.in +++ b/src/rt/rustrt.def.in @@ -44,6 +44,7 @@ upcall_grow_task upcall_join upcall_kill upcall_log_double +upcall_log_float upcall_log_int upcall_log_str upcall_malloc |
