Skip to content

Commit 1d2d935

Browse files
committed
---
yaml --- r: 276414 b: refs/heads/master c: 62b19c6 h: refs/heads/master
1 parent cdcebb6 commit 1d2d935

File tree

84 files changed

+1453
-1606
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+1453
-1606
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: c45d4816ca1e53afd57a3140daca7ee46f34672c
2+
refs/heads/master: 62b19c627ebde2bbfa6021de146c502124da7975
33
refs/heads/snap-stage3: 235d77457d80b549dad3ac36d94f235208a1eafb
44
refs/heads/try: 49312a405e14a449b98fe0056b12a40ac128be4a
55
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105

trunk/src/doc/reference.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2091,8 +2091,6 @@ The following configurations must be defined by the implementation:
20912091
* `target_pointer_width = "..."` - Target pointer width in bits. This is set
20922092
to `"32"` for targets with 32-bit pointers, and likewise set to `"64"` for
20932093
64-bit pointers.
2094-
* `target_has_atomic = "..."` - Set of integer sizes on which the target can perform
2095-
atomic operations. Values are `"8"`, `"16"`, `"32"`, `"64"` and `"ptr"`.
20962094
* `target_vendor = "..."` - Vendor of the target, for example `apple`, `pc`, or
20972095
simply `"unknown"`.
20982096
* `test` - Enabled when compiling the test harness (using the `--test` flag).
@@ -2297,9 +2295,6 @@ The currently implemented features of the reference compiler are:
22972295
* `cfg_target_vendor` - Allows conditional compilation using the `target_vendor`
22982296
matcher which is subject to change.
22992297

2300-
* `cfg_target_has_atomic` - Allows conditional compilation using the `target_has_atomic`
2301-
matcher which is subject to change.
2302-
23032298
* `concat_idents` - Allows use of the `concat_idents` macro, which is in many
23042299
ways insufficient for concatenating identifiers, and may be
23052300
removed entirely for something more wholesome.

trunk/src/libcollectionstest/string.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ fn test_from_utf8() {
5252
String::from("ศไทย中华Việt Nam"));
5353

5454
let xs = b"hello\xFF".to_vec();
55-
let err = String::from_utf8(xs).err().unwrap();
55+
let err = String::from_utf8(xs).unwrap_err();
5656
assert_eq!(err.into_bytes(), b"hello\xff".to_vec());
5757
}
5858

trunk/src/libcore/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@
6363
#![feature(associated_type_defaults)]
6464
#![feature(concat_idents)]
6565
#![feature(const_fn)]
66-
#![feature(cfg_target_has_atomic)]
6766
#![feature(custom_attribute)]
6867
#![feature(fundamental)]
6968
#![feature(inclusive_range_syntax)]

0 commit comments

Comments
 (0)