Skip to content

Commit 20a0b02

Browse files
committed
---
yaml --- r: 212204 b: refs/heads/tmp c: dc15a52 h: refs/heads/master v: v3
1 parent f928618 commit 20a0b02

36 files changed

+391
-700
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ refs/heads/building: 126db549b038c84269a1e4fe46f051b2c15d6970
3232
refs/heads/beta: 62e70d35be3fe532c26a400b499c58a18f18dd3a
3333
refs/heads/windistfix: 7608dbad651f02e837ed05eef3d74a6662a6e928
3434
refs/tags/1.0.0-alpha: e42bd6d93a1d3433c486200587f8f9e12590a4d7
35-
refs/heads/tmp: dd81d1ebd975d4c812cbb5dd9d8afaefbd53dd2c
35+
refs/heads/tmp: dc15a523e5584df354c8ee06231506f0ae494f49
3636
refs/tags/1.0.0-alpha.2: 4c705f6bc559886632d3871b04f58aab093bfa2f
3737
refs/tags/homu-tmp: b77d60adb019bb5de05e884a99f3290ec4694137
3838
refs/heads/gate: 97c84447b65164731087ea82685580cc81424412

branches/tmp/AUTHORS.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ Hajime Morrita <[email protected]>
338338
Hanno Braun <[email protected]>
339339
Harry Marr <[email protected]>
340340
341-
Heejong Ahn <[email protected]>
341+
Heejong Ahn <[email protected]
342342
Henrik Schopmans <[email protected]>
343343
Herman J. Radtke III <[email protected]>
344344
HeroesGrave <[email protected]>

branches/tmp/configure

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,6 @@ valopt sysconfdir "/etc" "install system configuration files"
582582
valopt datadir "${CFG_PREFIX}/share" "install data"
583583
valopt infodir "${CFG_PREFIX}/share/info" "install additional info"
584584
valopt llvm-root "" "set LLVM root"
585-
valopt python "" "set path to python"
586585
valopt jemalloc-root "" "set directory where libjemalloc_pic.a is located"
587586
valopt build "${DEFAULT_BUILD}" "GNUs ./configure syntax LLVM build triple"
588587
valopt android-cross-path "/opt/ndk_standalone" "Android NDK standalone path"
@@ -696,9 +695,7 @@ putvar CFG_BOOTSTRAP_KEY
696695
step_msg "looking for build programs"
697696

698697
probe_need CFG_CURLORWGET curl wget
699-
if [ -z "$CFG_PYTHON_PROVIDED" ]; then
700-
probe_need CFG_PYTHON python2.7 python2.6 python2 python
701-
fi
698+
probe_need CFG_PYTHON python2.7 python2.6 python2 python
702699

703700
python_version=$($CFG_PYTHON -V 2>&1)
704701
if [ $(echo $python_version | grep -c '^Python 2\.[4567]') -ne 1 ]; then
@@ -852,6 +849,13 @@ then
852849
putvar CFG_LOCAL_RUST_ROOT
853850
fi
854851

852+
# Force freebsd to build with clang; gcc doesn't like us there
853+
if [ $CFG_OSTYPE = unknown-freebsd ]
854+
then
855+
step_msg "on FreeBSD, forcing use of clang"
856+
CFG_ENABLE_CLANG=1
857+
fi
858+
855859
# Force bitrig to build with clang; gcc doesn't like us there
856860
if [ $CFG_OSTYPE = unknown-bitrig ]
857861
then
@@ -969,8 +973,8 @@ fi
969973

970974
if [ ! -z "$CFG_ENABLE_CLANG" ]
971975
then
972-
case "$CC" in
973-
(''|*clang)
976+
if [ -z "$CC" ] || [[ $CC == *clang ]]
977+
then
974978
CFG_CLANG_VERSION=$($CFG_CC \
975979
--version \
976980
| grep version \
@@ -990,11 +994,9 @@ then
990994
err "bad CLANG version: $CFG_CLANG_VERSION, need >=3.0svn"
991995
;;
992996
esac
993-
;;
994-
(*)
997+
else
995998
msg "skipping CFG_ENABLE_CLANG version check; provided CC=$CC"
996-
;;
997-
esac
999+
fi
9981000
fi
9991001

10001002
if [ ! -z "$CFG_ENABLE_CCACHE" ]

branches/tmp/mk/docs.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ endef
265265
$(foreach crate,$(CRATES),$(eval $(call DEF_LIB_DOC,$(crate))))
266266

267267
COMPILER_DOC_TARGETS := $(CRATES:%=doc/%/index.html)
268-
ifdef CFG_ENABLE_COMPILER_DOCS
268+
ifdef CFG_COMPILER_DOCS
269269
DOC_TARGETS += $(COMPILER_DOC_TARGETS)
270270
else
271271
DOC_TARGETS += $(DOC_CRATES:%=doc/%/index.html)

branches/tmp/src/compiletest/runtest.rs

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ use std::fmt;
2424
use std::fs::{self, File};
2525
use std::io::BufReader;
2626
use std::io::prelude::*;
27+
use std::iter::repeat;
2728
use std::net::TcpStream;
2829
use std::path::{Path, PathBuf};
2930
use std::process::{Command, Output, ExitStatus};
@@ -927,12 +928,12 @@ fn check_forbid_output(props: &TestProps,
927928
}
928929
}
929930

930-
fn check_expected_errors(expected_errors: Vec<errors::ExpectedError>,
931+
fn check_expected_errors(expected_errors: Vec<errors::ExpectedError> ,
931932
testfile: &Path,
932933
proc_res: &ProcRes) {
933934

934935
// true if we found the error in question
935-
let mut found_flags = vec![false; expected_errors.len()];
936+
let mut found_flags: Vec<_> = repeat(false).take(expected_errors.len()).collect();
936937

937938
if proc_res.status.success() {
938939
fatal("process did not return an error status");
@@ -953,10 +954,14 @@ fn check_expected_errors(expected_errors: Vec<errors::ExpectedError>,
953954
}
954955
}
955956

956-
// A multi-line error will have followup lines which start with a space
957-
// or open paren.
957+
// A multi-line error will have followup lines which will always
958+
// start with one of these strings.
958959
fn continuation( line: &str) -> bool {
959-
line.starts_with(" ") || line.starts_with("(")
960+
line.starts_with(" expected") ||
961+
line.starts_with(" found") ||
962+
// 1234
963+
// Should have 4 spaces: see issue 18946
964+
line.starts_with("(")
960965
}
961966

962967
// Scan and extract our error/warning messages,

branches/tmp/src/doc/reference.md

Lines changed: 9 additions & 141 deletions
Original file line numberDiff line numberDiff line change
@@ -1943,6 +1943,9 @@ macro scope.
19431943
- `simd` - on certain tuple structs, derive the arithmetic operators, which
19441944
lower to the target's SIMD instructions, if any; the `simd` feature gate
19451945
is necessary to use this attribute.
1946+
- `static_assert` - on statics whose type is `bool`, terminates compilation
1947+
with an error if it is not initialized to `true`. To use this, the `static_assert`
1948+
feature gate must be enabled.
19461949
- `unsafe_no_drop_flag` - on structs, remove the flag that prevents
19471950
destructors from being run twice. Destructors might be run multiple times on
19481951
the same object with this attribute. To use this, the `unsafe_no_drop_flag` feature
@@ -2298,6 +2301,12 @@ The currently implemented features of the reference compiler are:
22982301
crate. Stability markers are also attributes: `#[stable]`,
22992302
`#[unstable]`, and `#[deprecated]` are the three levels.
23002303

2304+
* `static_assert` - The `#[static_assert]` functionality is experimental and
2305+
unstable. The attribute can be attached to a `static` of
2306+
type `bool` and the compiler will error if the `bool` is
2307+
`false` at compile time. This version of this functionality
2308+
is unintuitive and suboptimal.
2309+
23012310
* `start` - Allows use of the `#[start]` attribute, which changes the entry point
23022311
into a Rust program. This capability, especially the signature for the
23032312
annotated function, is subject to change.
@@ -3599,147 +3608,6 @@ The notation `&self` is a shorthand for `self: &Self`. In this case,
35993608
in the impl, `Self` refers to the value of type `String` that is the
36003609
receiver for a call to the method `make_string`.
36013610

3602-
## Subtyping
3603-
3604-
Subtyping is implicit and can occur at any stage in type checking or
3605-
inference. Subtyping in Rust is very restricted and occurs only due to
3606-
variance with respect to lifetimes and between types with higher ranked
3607-
lifetimes. If we were to erase lifetimes from types, then the only subtyping
3608-
would be due to type equality.
3609-
3610-
Consider the following example: string literals always have `'static`
3611-
lifetime. Nevertheless, we can assign `s` to `t`:
3612-
3613-
```
3614-
fn bar<'a>() {
3615-
let s: &'static str = "hi";
3616-
let t: &'a str = s;
3617-
}
3618-
```
3619-
Since `'static` "lives longer" than `'a`, `&'static str` is a subtype of
3620-
`&'a str`.
3621-
3622-
## Type coercions
3623-
3624-
Coercions are defined in [RFC401]. A coercion is implicit and has no syntax.
3625-
3626-
[RFC401]: https://github.com/rust-lang/rfcs/blob/master/text/0401-coercions.md
3627-
3628-
### Coercion sites
3629-
3630-
A coercion can only occur at certain coercion sites in a program; these are
3631-
typically places where the desired type is explicit or can be dervied by
3632-
propagation from explicit types (without type inference). Possible coercion
3633-
sites are:
3634-
3635-
* `let` statements where an explicit type is given.
3636-
3637-
In `let _: U = e;`, `e` is coerced to have type `U`.
3638-
3639-
* `static` and `const` statements (similar to `let` statements).
3640-
3641-
* arguments for function calls.
3642-
3643-
The value being coerced is the
3644-
actual parameter and it is coerced to the type of the formal parameter. For
3645-
example, let `foo` be defined as `fn foo(x: U) { ... }` and call it as
3646-
`foo(e);`. Then `e` is coerced to have type `U`;
3647-
3648-
* instantiations of struct or variant fields.
3649-
3650-
Assume we have a `struct
3651-
Foo { x: U }` and instantiate it as `Foo { x: e }`. Then `e` is coerced to
3652-
have type `U`.
3653-
3654-
* function results (either the final line of a block if it is not semicolon
3655-
terminated or any expression in a `return` statement).
3656-
3657-
In `fn foo() -> U { e }`, `e` is coerced to to have type `U`.
3658-
3659-
If the expression in one of these coercion sites is a coercion-propagating
3660-
expression, then the relevant sub-expressions in that expression are also
3661-
coercion sites. Propagation recurses from these new coercion sites.
3662-
Propagating expressions and their relevant sub-expressions are:
3663-
3664-
* array literals, where the array has type `[U; n]`. Each sub-expression in
3665-
the array literal is a coercion site for coercion to type `U`.
3666-
3667-
* array literals with repeating syntax, where the array has type `[U; n]`. The
3668-
repeated sub-expression is a coercion site for coercion to type `U`.
3669-
3670-
* tuples, where a tuple is a coercion site to type `(U_0, U_1, ..., U_n)`.
3671-
Each sub-expression is a coercion site to the respective type, e.g. the
3672-
zeroth sub-expression is a coercion site to type `U_0`.
3673-
3674-
* parenthesised sub-expressions (`(e)`). If the expression has type `U`, then
3675-
the sub-expression is a coercion site to `U`.
3676-
3677-
* blocks. If a block has type `U`, then the last expression in the block (if
3678-
it is not semicolon-terminated) is a coercion site to `U`. This includes
3679-
blocks which are part of control flow statements, such as `if`/`else`, if
3680-
the block has a known type.
3681-
3682-
### Coercion types
3683-
3684-
Coercion is allowed between the following types:
3685-
3686-
* `T` to `U` if `T` is a subtype of `U` (*reflexive case*).
3687-
3688-
* `T_1` to `T_3` where `T_1` coerces to `T_2` and `T_2` coerces to `T_3`
3689-
(*transitive case*).
3690-
3691-
Note that this is not fully supported yet
3692-
3693-
* `&mut T` to `&T`.
3694-
3695-
* `*mut T` to `*const T`.
3696-
3697-
* `&T` to `*const T`.
3698-
3699-
* `&mut T` to `*mut T`.
3700-
3701-
* `&T` to `&U` if `T` implements `Deref<Target = U>`. For example:
3702-
3703-
```rust
3704-
use std::ops::Deref;
3705-
3706-
struct CharContainer {
3707-
value: char
3708-
}
3709-
3710-
impl Deref for CharContainer {
3711-
type Target = char;
3712-
3713-
fn deref<'a>(&'a self) -> &'a char {
3714-
&self.value
3715-
}
3716-
}
3717-
3718-
fn foo(arg: &char) {}
3719-
3720-
fn main() {
3721-
let x = &mut CharContainer { value: 'y' };
3722-
foo(x); //&mut CharContainer is coerced to &char.
3723-
}
3724-
```
3725-
* `&mut T` to `&mut U` if `T` implements `DerefMut<Target = U>`.
3726-
3727-
* TyCtor(`T`) to TyCtor(coerce_inner(`T`)), where TyCtor(`T`) is one of
3728-
- `&T`
3729-
- `&mut T`
3730-
- `*const T`
3731-
- `*mut T`
3732-
- `Box<T>`
3733-
3734-
and where
3735-
- coerce_inner(`[T, ..n]`) = `[T]`
3736-
- coerce_inner(`T`) = `U` where `T` is a concrete type which implements the
3737-
trait `U`.
3738-
3739-
In the future, coerce_inner will be recursively extended to tuples and
3740-
structs. In addition, coercions from sub-traits to super-traits will be
3741-
added. See [RFC401] for more details.
3742-
37433611
# Special traits
37443612

37453613
Several traits define special evaluation behavior.

branches/tmp/src/doc/trpl/mutability.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ b.x = 10; // error: cannot assign to immutable field `b.x`
159159

160160
[struct]: structs.html
161161

162-
However, by using [`Cell<T>`][cell], you can emulate field-level mutability:
162+
However, by using `Cell<T>`, you can emulate field-level mutability:
163163

164164
```rust
165165
use std::cell::Cell;
@@ -176,6 +176,4 @@ point.y.set(7);
176176
println!("y: {:?}", point.y);
177177
```
178178

179-
[cell]: ../std/cell/struct.Cell.html
180-
181179
This will print `y: Cell { value: 7 }`. We’ve successfully updated `y`.

branches/tmp/src/libcollections/linked_list.rs

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,14 +106,16 @@ impl<T> Rawlink<T> {
106106
/// Convert the `Rawlink` into an Option value
107107
fn resolve_immut<'a>(&self) -> Option<&'a T> {
108108
unsafe {
109-
self.p.as_ref()
109+
mem::transmute(self.p.as_ref())
110110
}
111111
}
112112

113113
/// Convert the `Rawlink` into an Option value
114114
fn resolve<'a>(&mut self) -> Option<&'a mut T> {
115-
unsafe {
116-
self.p.as_mut()
115+
if self.p.is_null() {
116+
None
117+
} else {
118+
Some(unsafe { mem::transmute(self.p) })
117119
}
118120
}
119121

branches/tmp/src/libcore/result.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -223,9 +223,7 @@
223223
//! }
224224
//! ```
225225
//!
226-
//! `try!` is imported by the prelude and is available everywhere, but it can only
227-
//! be used in functions that return `Result` because of the early return of
228-
//! `Err` that it provides.
226+
//! `try!` is imported by the prelude, and is available everywhere.
229227
230228
#![stable(feature = "rust1", since = "1.0.0")]
231229

branches/tmp/src/liblibc/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6308,8 +6308,8 @@ pub mod funcs {
63086308
lpOverlapped: LPOVERLAPPED) -> BOOL;
63096309
pub fn WriteFile(hFile: HANDLE,
63106310
lpBuffer: LPVOID,
6311-
nNumberOfBytesToRead: DWORD,
6312-
lpNumberOfBytesRead: LPDWORD,
6311+
nNumberOfBytesToWrite: DWORD,
6312+
lpNumberOfBytesWritten: LPDWORD,
63136313
lpOverlapped: LPOVERLAPPED) -> BOOL;
63146314
pub fn SetFilePointerEx(hFile: HANDLE,
63156315
liDistanceToMove: LARGE_INTEGER,

branches/tmp/src/librustc/metadata/csearch.rs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
use metadata::common::*;
1414
use metadata::cstore;
1515
use metadata::decoder;
16+
use middle::def;
1617
use middle::lang_items;
1718
use middle::ty;
1819

@@ -113,6 +114,12 @@ pub fn maybe_get_item_ast<'tcx>(tcx: &ty::ctxt<'tcx>, def: ast::DefId,
113114
decoder::maybe_get_item_ast(&*cdata, tcx, def.node, decode_inlined_item)
114115
}
115116

117+
pub fn get_enum_variant_defs(cstore: &cstore::CStore, enum_id: ast::DefId)
118+
-> Vec<(def::Def, ast::Name, ast::Visibility)> {
119+
let cdata = cstore.get_crate_data(enum_id.krate);
120+
decoder::get_enum_variant_defs(&*cstore.intr, &*cdata, enum_id.node)
121+
}
122+
116123
pub fn get_enum_variants<'tcx>(tcx: &ty::ctxt<'tcx>, def: ast::DefId)
117124
-> Vec<Rc<ty::VariantInfo<'tcx>>> {
118125
let cstore = &tcx.sess.cstore;

0 commit comments

Comments
 (0)