Skip to content

Commit 93a591f

Browse files
committed
---
yaml --- r: 22595 b: refs/heads/master c: 93bb030 h: refs/heads/master i: 22593: b45c288 22591: 0c4285a v: v3
1 parent 3edf8cd commit 93a591f

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: 03cdc2476da62ce3d55d18c649f2b479baa89794
2+
refs/heads/master: 93bb030a8cf2b3906c926b540a4f2833bb4da61c
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: cd6f24f9d14ac90d167386a56e7a6ac1f0318195
55
refs/heads/try: ffbe0e0e00374358b789b0037bcb3a577cd218be

trunk/src/test/run-pass/foreign-no-abi.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// ABI is cdecl by default
22

33
extern mod rustrt {
4-
fn get_task_id() -> int;
4+
fn get_task_id() -> libc::intptr_t;
55
}
66

77
fn main() {

trunk/src/test/run-pass/issue-1251.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#[link(name = "get_task_id")];
22

33
extern mod rustrt {
4-
fn get_task_id() -> int;
4+
fn get_task_id() -> libc::intptr_t;
55
}
66

77
fn main() { }

trunk/src/test/run-pass/item-attributes.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ mod test_foreign_items {
163163
#[attr];
164164

165165
#[attr]
166-
fn get_task_id() -> int;
166+
fn get_task_id() -> libc::intptr_t;
167167
}
168168
}
169169

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import std::rand;
88
extern mod rustrt {
99
fn debug_get_stk_seg() -> *u8;
1010

11-
fn rust_get_sched_id() -> int;
11+
fn rust_get_sched_id() -> libc::intptr_t;
1212
fn last_os_error() -> ~str;
1313
fn rust_getcwd() -> ~str;
1414
fn get_task_id();

0 commit comments

Comments
 (0)