Skip to content

Commit 4271f56

Browse files
committed
---
yaml --- r: 173278 b: refs/heads/snap-stage3 c: 1649810 h: refs/heads/master v: v3
1 parent d225b3f commit 4271f56

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
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: f0d6eee499e898fc0336c72069ab7bac47125c4b
4+
refs/heads/snap-stage3: 164981042d6afd38c6635ab10ef8ed3c0daffe8b
55
refs/heads/try: 957472483d3a2f43c0e4f7c2056280a1022af93c
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d

branches/snap-stage3/src/libstd/sys/common/stack.rs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,12 @@ pub unsafe fn record_sp_limit(limit: uint) {
231231
unsafe fn target_record_sp_limit(_: uint) {
232232
}
233233

234+
// powerpc - FIXME(POWERPC): missing...
235+
#[cfg(target_arch = "powerpc")]
236+
unsafe fn target_record_sp_limit(_: uint) {
237+
}
238+
239+
234240
// iOS segmented stack is disabled for now, see related notes
235241
#[cfg(all(target_arch = "arm", target_os = "ios"))] #[inline(always)]
236242
unsafe fn target_record_sp_limit(_: uint) {
@@ -326,6 +332,12 @@ pub unsafe fn get_sp_limit() -> uint {
326332
1024
327333
}
328334

335+
// powepc - FIXME(POWERPC): missing...
336+
#[cfg(target_arch = "powerpc")]
337+
unsafe fn target_get_sp_limit() -> uint {
338+
1024
339+
}
340+
329341
// iOS doesn't support segmented stacks yet. This function might
330342
// be called by runtime though so it is unsafe to mark it as
331343
// unreachable, let's return a fixed constant.

0 commit comments

Comments
 (0)