Skip to content

Commit 4abf7cf

Browse files
committed
---
yaml --- r: 173309 b: refs/heads/snap-stage3 c: 415fc5f h: refs/heads/master i: 173307: fd3460d v: v3
1 parent a474136 commit 4abf7cf

File tree

277 files changed

+1823
-4109
lines changed

Some content is hidden

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

277 files changed

+1823
-4109
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: 896cb36ecab3eaeb7f101087e030e43771eca5ca
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: 0ad0b0ee557293c118357b40b855217c96ef7a74
4+
refs/heads/snap-stage3: 415fc5f0f10b6180193ecd309b21ae80a1efa6a9
55
refs/heads/try: 957472483d3a2f43c0e4f7c2056280a1022af93c
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d

branches/snap-stage3/configure

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -448,10 +448,6 @@ case $CFG_CPUTYPE in
448448
CFG_CPUTYPE=aarch64
449449
;;
450450

451-
powerpc)
452-
CFG_CPUTYPE=powerpc
453-
;;
454-
455451
x86_64 | x86-64 | x64 | amd64)
456452
CFG_CPUTYPE=x86_64
457453
;;
@@ -1008,7 +1004,7 @@ do
10081004
make_dir $t/rt/jemalloc
10091005
for i in \
10101006
isaac sync test \
1011-
arch/i386 arch/x86_64 arch/arm arch/aarch64 arch/mips arch/powerpc
1007+
arch/i386 arch/x86_64 arch/arm arch/aarch64 arch/mips
10121008
do
10131009
make_dir $t/rt/stage$s/$i
10141010
done
@@ -1173,7 +1169,7 @@ do
11731169

11741170
msg "configuring LLVM for $gnu_t"
11751171

1176-
LLVM_TARGETS="--enable-targets=x86,x86_64,arm,aarch64,mips,powerpc"
1172+
LLVM_TARGETS="--enable-targets=x86,x86_64,arm,aarch64,mips"
11771173
LLVM_BUILD="--build=$gnu_t"
11781174
LLVM_HOST="--host=$gnu_t"
11791175
LLVM_TARGET="--target=$gnu_t"

branches/snap-stage3/mk/cfg/powerpc-unknown-linux-gnu.mk

Lines changed: 0 additions & 28 deletions
This file was deleted.

branches/snap-stage3/mk/main.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ endif
263263
######################################################################
264264

265265
# FIXME: x86-ism
266-
LLVM_COMPONENTS=x86 arm aarch64 mips powerpc ipo bitreader bitwriter linker asmparser mcjit \
266+
LLVM_COMPONENTS=x86 arm aarch64 mips ipo bitreader bitwriter linker asmparser mcjit \
267267
interpreter instrumentation
268268

269269
# Only build these LLVM tools

branches/snap-stage3/mk/platform.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ define CFG_MAKE_TOOLCHAIN
177177
$$(CFG_GCCISH_DEF_FLAG_$(1))$$(3) $$(2) \
178178
$$(call CFG_INSTALL_NAME_$(1),$$(4))
179179

180-
ifeq ($$(findstring $(HOST_$(1)),arm aarch64 mips mipsel powerpc),)
180+
ifeq ($$(findstring $(HOST_$(1)),arm aarch64 mips mipsel),)
181181

182182
# We're using llvm-mc as our assembler because it supports
183183
# .cfi pseudo-ops on mac
@@ -189,7 +189,7 @@ define CFG_MAKE_TOOLCHAIN
189189
-o=$$(1)
190190
else
191191

192-
# For the ARM, AARCH64, MIPS and POWER crosses, use the toolchain assembler
192+
# For the ARM, AARCH64 and MIPS crosses, use the toolchain assembler
193193
# FIXME: We should be able to use the LLVM assembler
194194
CFG_ASSEMBLE_$(1)=$$(CC_$(1)) $$(CFG_GCCISH_CFLAGS_$(1)) \
195195
$$(CFG_DEPEND_FLAGS) $$(2) -c -o $$(1)

branches/snap-stage3/src/compiletest/runtest.rs

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -966,16 +966,6 @@ fn check_expected_errors(expected_errors: Vec<errors::ExpectedError> ,
966966
line.starts_with( prefix )
967967
}
968968

969-
// A multi-line error will have followup lines which will always
970-
// start with one of these strings.
971-
fn continuation( line: &str) -> bool {
972-
line.starts_with(" expected") ||
973-
line.starts_with(" found") ||
974-
// 1234
975-
// Should have 4 spaces: see issue 18946
976-
line.starts_with("(")
977-
}
978-
979969
// Scan and extract our error/warning messages,
980970
// which look like:
981971
// filename:line1:col1: line2:col2: *error:* msg
@@ -991,7 +981,7 @@ fn check_expected_errors(expected_errors: Vec<errors::ExpectedError> ,
991981
ee.kind,
992982
ee.msg,
993983
line);
994-
if (prefix_matches(line, prefixes[i].as_slice()) || continuation(line)) &&
984+
if prefix_matches(line, prefixes[i].as_slice()) &&
995985
line.contains(ee.kind.as_slice()) &&
996986
line.contains(ee.msg.as_slice()) {
997987
found_flags[i] = true;

branches/snap-stage3/src/doc/reference.md

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2117,13 +2117,6 @@ macro scope.
21172117
destructors from being run twice. Destructors might be run multiple times on
21182118
the same object with this attribute.
21192119
- `doc` - Doc comments such as `/// foo` are equivalent to `#[doc = "foo"]`.
2120-
- `rustc_on_unimplemented` - Write a custom note to be shown along with the error
2121-
when the trait is found to be unimplemented on a type.
2122-
You may use format arguments like `{T}`, `{A}` to correspond to the
2123-
types at the point of use corresponding to the type parameters of the
2124-
trait of the same name. `{Self}` will be replaced with the type that is supposed
2125-
to implement the trait but doesn't. To use this, the `on_unimplemented` feature gate
2126-
must be enabled.
21272120

21282121
### Conditional compilation
21292122

@@ -2170,7 +2163,7 @@ arbitrarily complex configurations through nesting.
21702163
The following configurations must be defined by the implementation:
21712164

21722165
* `target_arch = "..."`. Target CPU architecture, such as `"x86"`, `"x86_64"`
2173-
`"mips"`, `"powerpc"`, `"arm"`, or `"aarch64"`.
2166+
`"mips"`, `"arm"`, or `"aarch64"`.
21742167
* `target_endian = "..."`. Endianness of the target CPU, either `"little"` or
21752168
`"big"`.
21762169
* `target_family = "..."`. Operating system family of the target, e. g.
@@ -2432,15 +2425,15 @@ There are three different types of inline attributes:
24322425
* `#[inline(always)]` asks the compiler to always perform an inline expansion.
24332426
* `#[inline(never)]` asks the compiler to never perform an inline expansion.
24342427

2435-
### Derive
2428+
### Deriving
24362429

2437-
The `derive` attribute allows certain traits to be automatically implemented
2430+
The `deriving` attribute allows certain traits to be automatically implemented
24382431
for data structures. For example, the following will create an `impl` for the
24392432
`PartialEq` and `Clone` traits for `Foo`, the type parameter `T` will be given
24402433
the `PartialEq` or `Clone` constraints for the appropriate `impl`:
24412434

24422435
```
2443-
#[derive(PartialEq, Clone)]
2436+
#[deriving(PartialEq, Clone)]
24442437
struct Foo<T> {
24452438
a: int,
24462439
b: T
@@ -2462,7 +2455,7 @@ impl<T: PartialEq> PartialEq for Foo<T> {
24622455
}
24632456
```
24642457

2465-
Supported traits for `derive` are:
2458+
Supported traits for `deriving` are:
24662459

24672460
* Comparison traits: `PartialEq`, `Eq`, `PartialOrd`, `Ord`.
24682461
* Serialization: `Encodable`, `Decodable`. These require `serialize`.

branches/snap-stage3/src/doc/rustdoc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ Rustdoc also supplies some extra sugar for helping with some tedious
198198
documentation examples. If a line is prefixed with `# `, then the line
199199
will not show up in the HTML documentation, but it will be used when
200200
testing the code block (NB. the space after the `#` is required, so
201-
that one can still write things like `#[derive(Eq)]`).
201+
that one can still write things like `#[deriving(Eq)]`).
202202

203203
~~~md
204204
```

0 commit comments

Comments
 (0)