diff options
| author | Tim Chevalier <[email protected]> | 2011-03-22 17:25:40 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2011-03-22 17:31:27 -0700 |
| commit | 23e23bd762a4b5a14ff2abcbabfd2349621a3dbe (patch) | |
| tree | a0ff672d10f7a87a22d1eb047632f3b96dfe5317 /Makefile.in | |
| parent | stdlib: Add EBML writing functionality (diff) | |
| download | rust-23e23bd762a4b5a14ff2abcbabfd2349621a3dbe.tar.xz rust-23e23bd762a4b5a14ff2abcbabfd2349621a3dbe.zip | |
Further support for floating-point. Literals with exponents work
and literals with the 'f32' or 'f64' suffixes work as well. In
addition, logging things with the f32 or f64 type works. (float is
still assumed to be a synonym for f64).
Diffstat (limited to 'Makefile.in')
| -rw-r--r-- | Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 50b3e60e..d11afa68 100644 --- a/Makefile.in +++ b/Makefile.in @@ -486,7 +486,8 @@ rustllvm/%.o: rustllvm/%.cpp $(MKFILES) # Float doesn't work in boot -FLOAT_XFAILS := test/run-pass/float.rs +FLOAT_XFAILS := test/run-pass/float.rs \ + test/run-pass/float2.rs # Temporarily xfail tests broken by the nominal-tags change. |