Skip to content

Commit 9a6ff7d

Browse files
committed
---
yaml --- r: 69544 b: refs/heads/auto c: bd980bc h: refs/heads/master v: v3
1 parent 870b04b commit 9a6ff7d

19 files changed

+4
-272
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0
1414
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
1515
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
1616
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
17-
refs/heads/auto: 8261f2c37c7181fb4a40e8f8d9eaebb96deea9bb
17+
refs/heads/auto: bd980bcbf59ddfbe38147759c903dcaa46ebab7f
1818
refs/heads/servo: af82457af293e2a842ba6b7759b70288da276167
1919
refs/tags/release-0.6: b4ebcfa1812664df5e142f0134a5faea3918544c

branches/auto/mk/tests.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ else
215215
ALL_CS := $(wildcard $(S)src/rt/*.cpp \
216216
$(S)src/rt/*/*.cpp \
217217
$(S)src/rt/*/*/*.cpp \
218-
$(S)srcrustllvm/*.cpp)
218+
$(S)src/rustllvm/*.cpp)
219219
ALL_CS := $(filter-out $(S)src/rt/bigint/bigint_ext.cpp \
220220
$(S)src/rt/bigint/bigint_int.cpp \
221221
$(S)src/rt/miniz.cpp \
@@ -225,7 +225,7 @@ ALL_CS := $(filter-out $(S)src/rt/bigint/bigint_ext.cpp \
225225
ALL_HS := $(wildcard $(S)src/rt/*.h \
226226
$(S)src/rt/*/*.h \
227227
$(S)src/rt/*/*/*.h \
228-
$(S)srcrustllvm/*.h)
228+
$(S)src/rustllvm/*.h)
229229
ALL_HS := $(filter-out $(S)src/rt/vg/valgrind.h \
230230
$(S)src/rt/vg/memcheck.h \
231231
$(S)src/rt/uthash/uthash.h \

branches/auto/src/libsyntax/ext/expand.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -683,7 +683,7 @@ pub fn std_macros() -> @str {
683683
($cond:expr) => {
684684
if !$cond {
685685
::std::sys::FailWithCause::fail_with(
686-
\"assertion failed: \" + stringify!($cond), file!(), line!())
686+
~\"assertion failed: \" + stringify!($cond), file!(), line!())
687687
}
688688
};
689689
($cond:expr, $msg:expr) => {

branches/auto/src/test/codegen/iterate-over-array.cc

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,3 @@
1-
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
2-
// file at the top-level directory of this distribution and at
3-
// http://rust-lang.org/COPYRIGHT.
4-
//
5-
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6-
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7-
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8-
// option. This file may not be copied, modified, or distributed
9-
// except according to those terms.
10-
111
#include <stdlib.h>
122
#include <assert.h>
133

branches/auto/src/test/codegen/iterate-over-array.rs

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,3 @@
1-
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
2-
// file at the top-level directory of this distribution and at
3-
// http://rust-lang.org/COPYRIGHT.
4-
//
5-
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6-
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7-
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8-
// option. This file may not be copied, modified, or distributed
9-
// except according to those terms.
10-
111
#[no_mangle]
122
fn test(x: &[int]) -> int {
133
let mut y = 0;

branches/auto/src/test/codegen/scalar-function-call.cc

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,3 @@
1-
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
2-
// file at the top-level directory of this distribution and at
3-
// http://rust-lang.org/COPYRIGHT.
4-
//
5-
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6-
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7-
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8-
// option. This file may not be copied, modified, or distributed
9-
// except according to those terms.
10-
111
#include <stdlib.h>
122

133
size_t foo(size_t x) {

branches/auto/src/test/codegen/scalar-function-call.rs

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,3 @@
1-
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
2-
// file at the top-level directory of this distribution and at
3-
// http://rust-lang.org/COPYRIGHT.
4-
//
5-
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6-
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7-
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8-
// option. This file may not be copied, modified, or distributed
9-
// except according to those terms.
10-
111
fn foo(x: int) -> int {
122
x * x
133
}

branches/auto/src/test/codegen/small-dense-int-switch.cc

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,3 @@
1-
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
2-
// file at the top-level directory of this distribution and at
3-
// http://rust-lang.org/COPYRIGHT.
4-
//
5-
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6-
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7-
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8-
// option. This file may not be copied, modified, or distributed
9-
// except according to those terms.
10-
111
#include <stdlib.h>
122

133
extern "C"

branches/auto/src/test/codegen/small-dense-int-switch.rs

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,3 @@
1-
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
2-
// file at the top-level directory of this distribution and at
3-
// http://rust-lang.org/COPYRIGHT.
4-
//
5-
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6-
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7-
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8-
// option. This file may not be copied, modified, or distributed
9-
// except according to those terms.
10-
111
#[no_mangle]
122
fn test(x: int, y: int) -> int {
133
match x {

branches/auto/src/test/codegen/stack-alloc-string-slice.cc

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,3 @@
1-
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
2-
// file at the top-level directory of this distribution and at
3-
// http://rust-lang.org/COPYRIGHT.
4-
//
5-
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6-
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7-
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8-
// option. This file may not be copied, modified, or distributed
9-
// except according to those terms.
10-
111
#include <stddef.h>
122

133
struct slice {

branches/auto/src/test/codegen/stack-alloc-string-slice.rs

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,3 @@
1-
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
2-
// file at the top-level directory of this distribution and at
3-
// http://rust-lang.org/COPYRIGHT.
4-
//
5-
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6-
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7-
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8-
// option. This file may not be copied, modified, or distributed
9-
// except according to those terms.
10-
111
#[no_mangle]
122
fn test() {
133
let _x = "hello";

branches/auto/src/test/codegen/static-method-call-multi.cc

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

branches/auto/src/test/codegen/static-method-call-multi.rs

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

branches/auto/src/test/codegen/static-method-call.cc

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

branches/auto/src/test/codegen/static-method-call.rs

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

branches/auto/src/test/codegen/virtual-method-call-struct-return.cc

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

branches/auto/src/test/codegen/virtual-method-call-struct-return.rs

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

branches/auto/src/test/codegen/virtual-method-call.cc

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

branches/auto/src/test/codegen/virtual-method-call.rs

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

0 commit comments

Comments
 (0)