Skip to content

Commit 3625908

Browse files
committed
---
yaml --- r: 235423 b: refs/heads/stable c: 07132b4 h: refs/heads/master i: 235421: 8d7ae22 235419: 7a074e6 235415: 2f7e873 235407: 65b65e7 235391: 768beb2 v: v3
1 parent f6b797a commit 3625908

File tree

17 files changed

+64
-305
lines changed

17 files changed

+64
-305
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ refs/heads/tmp: afae2ff723393b3ab4ccffef6ac7c6d1809e2da0
2929
refs/tags/1.0.0-alpha.2: 4c705f6bc559886632d3871b04f58aab093bfa2f
3030
refs/tags/homu-tmp: f859507de8c410b648d934d8f5ec1c52daac971d
3131
refs/tags/1.0.0-beta: 8cbb92b53468ee2b0c2d3eeb8567005953d40828
32-
refs/heads/stable: 137a699cc3a03e90f9e2aa04a7b163e7776706db
32+
refs/heads/stable: 07132b499f6b149c54e117b9b60ba11bbb0ff72c
3333
refs/tags/1.0.0: 55bd4f8ff2b323f317ae89e254ce87162d52a375
3434
refs/tags/1.1.0: bc3c16f09287e5545c1d3f76b7abd54f2eca868b
3535
refs/tags/1.2.0: f557861f822c34f07270347b94b5280de20a597e

branches/stable/AUTHORS.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -958,7 +958,7 @@ Santiago Rodriguez <[email protected]>
958958
Saurabh Anand <[email protected]>
959959
Scott Jenkins <[email protected]>
960960
Scott Lawrence <[email protected]>
961-
Scott Olson <scott@solson.me>
961+
Scott Olson <scott@scott-olson.org>
962962
Sean Bowe <[email protected]>
963963
Sean Chalmers <[email protected]>
964964
Sean Collins <[email protected]>

branches/stable/configure

Lines changed: 23 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -988,44 +988,29 @@ if [ ! -z "$CFG_ENABLE_CLANG" ]
988988
then
989989
case "$CC" in
990990
(''|*clang)
991-
CFG_CLANG_REPORTED_VERSION=$($CFG_CC --version | grep version)
992-
993-
if [[ $CFG_CLANG_REPORTED_VERSION == *"(based on LLVM "* ]]
994-
then
995-
CFG_CLANG_VERSION=$(echo $CFG_CLANG_REPORTED_VERSION | sed 's/.*(based on LLVM \(.*\))/\1/')
996-
elif [[ $CFG_CLANG_REPORTED_VERSION == "Apple LLVM"* ]]
997-
then
998-
CFG_OSX_CLANG_VERSION=$(echo $CFG_CLANG_REPORTED_VERSION | sed 's/.*version \(.*\) .*/\1/')
999-
else
1000-
CFG_CLANG_VERSION=$(echo $CFG_CLANG_REPORTED_VERSION | sed 's/.*version \(.*\) .*/\1/')
1001-
fi
1002-
1003-
if [ ! -z "$CFG_OSX_CLANG_VERSION" ]
1004-
then
1005-
case $CFG_OSX_CLANG_VERSION in
1006-
(7.0*)
1007-
step_msg "found ok version of APPLE CLANG: $CFG_OSX_CLANG_VERSION"
1008-
;;
1009-
(*)
1010-
err "bad APPLE CLANG version: $CFG_OSX_CLANG_VERSION, need >=7.0"
1011-
;;
1012-
esac
1013-
else
1014-
case $CFG_CLANG_VERSION in
1015-
(3.2* | 3.3* | 3.4* | 3.5* | 3.6* | 3.7*)
1016-
step_msg "found ok version of CLANG: $CFG_CLANG_VERSION"
1017-
;;
1018-
(*)
1019-
err "bad CLANG version: $CFG_CLANG_VERSION, need >=3.0svn"
1020-
;;
1021-
esac
1022-
fi
1023-
1024-
if [ -z "$CC" ]
1025-
then
1026-
CFG_CC="clang"
1027-
CFG_CXX="clang++"
1028-
fi
991+
CFG_CLANG_VERSION=$($CFG_CC \
992+
--version \
993+
| grep version \
994+
| sed 's/.*\(version .*\)/\1/; s/.*based on \(LLVM .*\))/\1/' \
995+
| cut -d ' ' -f 2)
996+
997+
case $CFG_CLANG_VERSION in
998+
(3.2* | 3.3* | 3.4* | 3.5* | 3.6* | 3.7*)
999+
step_msg "found ok version of CLANG: $CFG_CLANG_VERSION"
1000+
if [ -z "$CC" ]
1001+
then
1002+
CFG_CC="clang"
1003+
CFG_CXX="clang++"
1004+
fi
1005+
;;
1006+
(*)
1007+
err "bad CLANG version: $CFG_CLANG_VERSION, need >=3.0svn"
1008+
;;
1009+
esac
1010+
;;
1011+
(*)
1012+
msg "skipping CFG_ENABLE_CLANG version check; provided CC=$CC"
1013+
;;
10291014
esac
10301015
fi
10311016

branches/stable/src/doc/trpl/inline-assembly.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ fn main() {
103103
If you would like to use real operands in this position, however,
104104
you are required to put curly braces `{}` around the register that
105105
you want, and you are required to put the specific size of the
106-
operand. This is useful for very low level programming, where
106+
operand. This is useful for very low level programming, where
107107
which register you use is important:
108108

109109
```rust
@@ -166,3 +166,12 @@ unsafe {
166166
println!("eax is currently {}", result);
167167
# }
168168
```
169+
170+
## More Information
171+
172+
The current implementation of the `asm!` macro is a direct binding to [LLVM's
173+
inline assembler expressions][llvm-docs], so be sure to check out [their
174+
documentation as well][llvm-docs] for more information about clobbers,
175+
constraints, etc.
176+
177+
[llvm-docs]: http://llvm.org/docs/LangRef.html#inline-assembler-expressions

branches/stable/src/doc/trpl/ownership.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ With that in mind, let’s learn about ownership.
4242
# Ownership
4343

4444
[Variable bindings][bindings] have a property in Rust: they ‘have ownership’
45-
of what they’re bound to. This means that when a binding goes out of scope,
46-
Rust will free the bound resources. For example:
45+
of what they’re bound to. This means that when a binding goes out of scope, the
46+
resource that they’re bound to are freed. For example:
4747

4848
```rust
4949
fn foo() {

branches/stable/src/etc/errorck.py

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,6 @@
2323
errcode_map = {}
2424
error_re = re.compile("(E\d\d\d\d)")
2525

26-
# In the register_long_diagnostics! macro, entries look like this:
27-
#
28-
# EXXXX: r##"
29-
# <Long diagnostic message>
30-
# "##,
31-
#
32-
# These two variables are for detecting the beginning and end of diagnostic
33-
# messages so that duplicate error codes are not reported when a code occurs
34-
# inside a diagnostic message
35-
long_diag_begin = "r##\""
36-
long_diag_end = "\"##"
37-
3826
for (dirpath, dirnames, filenames) in os.walk(src_dir):
3927
if "src/test" in dirpath or "src/llvm" in dirpath:
4028
# Short circuit for fast
@@ -47,14 +35,7 @@
4735
path = os.path.join(dirpath, filename)
4836

4937
with open(path, 'r') as f:
50-
inside_long_diag = False
5138
for line_num, line in enumerate(f, start=1):
52-
if inside_long_diag:
53-
# Skip duplicate error code checking for this line
54-
if long_diag_end in line:
55-
inside_long_diag = False
56-
continue
57-
5839
match = error_re.search(line)
5940
if match:
6041
errcode = match.group(1)
@@ -66,9 +47,6 @@
6647
else:
6748
errcode_map[errcode] = new_record
6849

69-
if long_diag_begin in line:
70-
inside_long_diag = True
71-
7250
errors = False
7351
all_errors = []
7452

branches/stable/src/libcollections/str.rs

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -550,14 +550,6 @@ impl str {
550550
core_str::StrExt::slice_unchecked(self, begin, end)
551551
}
552552

553-
/// Takes a bytewise mutable slice from a string.
554-
///
555-
/// Same as `slice_unchecked`, but works with `&mut str` instead of `&str`.
556-
#[unstable(feature = "str_slice_mut", reason = "recently added")]
557-
pub unsafe fn slice_mut_unchecked(&mut self, begin: usize, end: usize) -> &mut str {
558-
core_str::StrExt::slice_mut_unchecked(self, begin, end)
559-
}
560-
561553
/// Returns a slice of the string from the character range [`begin`..`end`).
562554
///
563555
/// That is, start at the `begin`-th code point of the string and continue
@@ -784,7 +776,7 @@ impl str {
784776
///
785777
/// # Examples
786778
/// ```
787-
/// # #![feature(str_split_at)]
779+
/// # #![feature(collections)]
788780
/// let s = "Löwe 老虎 Léopard";
789781
/// let first_space = s.find(' ').unwrap_or(s.len());
790782
/// let (a, b) = s.split_at(first_space);
@@ -793,18 +785,10 @@ impl str {
793785
/// assert_eq!(b, " 老虎 Léopard");
794786
/// ```
795787
#[inline]
796-
#[unstable(feature = "str_split_at", reason = "recently added")]
797788
pub fn split_at(&self, mid: usize) -> (&str, &str) {
798789
core_str::StrExt::split_at(self, mid)
799790
}
800791

801-
/// Divide one mutable string slice into two at an index.
802-
#[inline]
803-
#[unstable(feature = "str_split_at", reason = "recently added")]
804-
pub fn split_at_mut(&mut self, mid: usize) -> (&mut str, &mut str) {
805-
core_str::StrExt::split_at_mut(self, mid)
806-
}
807-
808792
/// An iterator over the codepoints of `self`.
809793
///
810794
/// # Examples

branches/stable/src/libcollections/string.rs

Lines changed: 0 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -979,38 +979,6 @@ impl ops::Index<ops::RangeFull> for String {
979979
}
980980
}
981981

982-
#[cfg(not(stage0))]
983-
#[stable(feature = "derefmut_for_string", since = "1.2.0")]
984-
impl ops::IndexMut<ops::Range<usize>> for String {
985-
#[inline]
986-
fn index_mut(&mut self, index: ops::Range<usize>) -> &mut str {
987-
&mut self[..][index]
988-
}
989-
}
990-
#[cfg(not(stage0))]
991-
#[stable(feature = "derefmut_for_string", since = "1.2.0")]
992-
impl ops::IndexMut<ops::RangeTo<usize>> for String {
993-
#[inline]
994-
fn index_mut(&mut self, index: ops::RangeTo<usize>) -> &mut str {
995-
&mut self[..][index]
996-
}
997-
}
998-
#[cfg(not(stage0))]
999-
#[stable(feature = "derefmut_for_string", since = "1.2.0")]
1000-
impl ops::IndexMut<ops::RangeFrom<usize>> for String {
1001-
#[inline]
1002-
fn index_mut(&mut self, index: ops::RangeFrom<usize>) -> &mut str {
1003-
&mut self[..][index]
1004-
}
1005-
}
1006-
#[stable(feature = "derefmut_for_string", since = "1.2.0")]
1007-
impl ops::IndexMut<ops::RangeFull> for String {
1008-
#[inline]
1009-
fn index_mut(&mut self, _index: ops::RangeFull) -> &mut str {
1010-
unsafe { mem::transmute(&mut *self.vec) }
1011-
}
1012-
}
1013-
1014982
#[stable(feature = "rust1", since = "1.0.0")]
1015983
impl ops::Deref for String {
1016984
type Target = str;
@@ -1021,14 +989,6 @@ impl ops::Deref for String {
1021989
}
1022990
}
1023991

1024-
#[stable(feature = "derefmut_for_string", since = "1.2.0")]
1025-
impl ops::DerefMut for String {
1026-
#[inline]
1027-
fn deref_mut(&mut self) -> &mut str {
1028-
unsafe { mem::transmute(&mut self.vec[..]) }
1029-
}
1030-
}
1031-
1032992
/// Wrapper type providing a `&String` reference via `Deref`.
1033993
#[unstable(feature = "collections")]
1034994
#[deprecated(since = "1.2.0",

branches/stable/src/libcollectionstest/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(ascii)]
1211
#![feature(append)]
1312
#![feature(bitset)]
1413
#![feature(bitvec)]
@@ -44,7 +43,6 @@
4443
#![feature(str_char)]
4544
#![feature(str_escape)]
4645
#![feature(str_match_indices)]
47-
#![feature(str_split_at)]
4846
#![feature(str_utf16)]
4947
#![feature(box_str)]
5048
#![feature(subslice_offset)]

branches/stable/src/libcollectionstest/str.rs

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -701,18 +701,6 @@ fn test_split_at() {
701701
assert_eq!(b, "");
702702
}
703703

704-
#[test]
705-
fn test_split_at_mut() {
706-
use std::ascii::AsciiExt;
707-
let mut s = "Hello World".to_string();
708-
{
709-
let (a, b) = s.split_at_mut(5);
710-
a.make_ascii_uppercase();
711-
b.make_ascii_lowercase();
712-
}
713-
assert_eq!(s, "HELLO world");
714-
}
715-
716704
#[test]
717705
#[should_panic]
718706
fn test_split_at_boundscheck() {

0 commit comments

Comments
 (0)