diff options
| author | Tim Chevalier <[email protected]> | 2011-03-24 17:12:24 -0700 |
|---|---|---|
| committer | Tim Chevalier <[email protected]> | 2011-03-25 11:20:30 -0700 |
| commit | a47cd50dfb9b8d88abea0baf4122e454d82e09e9 (patch) | |
| tree | 0a6d53f38d5ef5fc32d4cb78ec125606cd2b328e /Makefile.in | |
| parent | rustc: Store cached crate metadata in the session (diff) | |
| download | rust-a47cd50dfb9b8d88abea0baf4122e454d82e09e9.tar.xz 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 'Makefile.in')
| -rw-r--r-- | Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index e2cf9f34..fd8d8b52 100644 --- a/Makefile.in +++ b/Makefile.in @@ -572,7 +572,8 @@ docsnap: doc/rust.pdf FLOAT_XFAILS := $(S)src/test/run-pass/float.rs \ $(S)src/test/run-pass/float2.rs \ - $(S)src/test/run-pass/float-signature.rs + $(S)src/test/run-pass/float-signature.rs \ + $(S)src/test/run-pass/floatlits.rs # Temporarily xfail tests broken by the nominal-tags change. @@ -641,8 +642,7 @@ TEST_XFAILS_BOOT := $(TASK_XFAILS) \ writing-through-read-alias.rs) \ $(S)src/test/bench/shootout/nbody.rs -TEST_XFAILS_STAGE0 := $(FLOAT_XFAILS) \ - $(addprefix $(S)src/test/run-pass/, \ +TEST_XFAILS_STAGE0 := $(addprefix $(S)src/test/run-pass/, \ acyclic-unwind.rs \ alt-pattern-drop.rs \ alt-type-simple.rs \ |