Skip to content

Commit eb56808

Browse files
committed
---
yaml --- r: 64917 b: refs/heads/snap-stage3 c: bd980bc h: refs/heads/master i: 64915: aed0ffa v: v3
1 parent edaeb3e commit eb56808

19 files changed

+4
-272
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: 2d28d645422c1617be58c8ca7ad9a457264ca850
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: 8261f2c37c7181fb4a40e8f8d9eaebb96deea9bb
4+
refs/heads/snap-stage3: bd980bcbf59ddfbe38147759c903dcaa46ebab7f
55
refs/heads/try: 7b78b52e602bb3ea8174f9b2006bff3315f03ef9
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b

branches/snap-stage3/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/snap-stage3/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/snap-stage3/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/snap-stage3/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/snap-stage3/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/snap-stage3/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/snap-stage3/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/snap-stage3/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/snap-stage3/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/snap-stage3/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/snap-stage3/src/test/codegen/static-method-call-multi.cc

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

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

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

branches/snap-stage3/src/test/codegen/static-method-call.cc

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

branches/snap-stage3/src/test/codegen/static-method-call.rs

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

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

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

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

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

branches/snap-stage3/src/test/codegen/virtual-method-call.cc

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

branches/snap-stage3/src/test/codegen/virtual-method-call.rs

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

0 commit comments

Comments
 (0)