Skip to content

Commit f86f211

Browse files
committed
---
yaml --- r: 6487 b: refs/heads/master c: 579399f h: refs/heads/master i: 6485: cf2c3b4 6483: 027f745 6479: 1042394 v: v3
1 parent dd798fc commit f86f211

File tree

4 files changed

+4
-1
lines changed

4 files changed

+4
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
refs/heads/master: a9967423f80dfb48001fe28b7c2e3ac7e0566f72
2+
refs/heads/master: 579399f92f991bb9cb9f9af55bfca523d66dec4f

trunk/src/test/run-fail/morestack1.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
// xfail-test
2+
// compile-flags:--stack-growth
23
fn getbig(i: int) {
34
if i != 0 {
45
getbig(i - 1);

trunk/src/test/run-pass/morestack1.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
// xfail-test
2+
// compile-flags:--stack-growth
23
fn getbig(i: int) {
34
if i != 0 {
45
getbig(i - 1);

trunk/src/test/run-pass/morestack2.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
// xfail-test
2+
// compile-flags:--stack-growth
23
fn getbig(i: int) -> int {
34
let m = if i >= 0 {
45
let j = getbig(i - 1);

0 commit comments

Comments
 (0)