File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed
trunk/src/libstd/sys/common Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: f0d6eee499e898fc0336c72069ab7bac47125c4b
2
+ refs/heads/master: 164981042d6afd38c6635ab10ef8ed3c0daffe8b
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: 210f0dcf007104240b2e286ed0b80cb4a61d7bae
5
5
refs/heads/try: 957472483d3a2f43c0e4f7c2056280a1022af93c
Original file line number Diff line number Diff line change @@ -231,6 +231,12 @@ pub unsafe fn record_sp_limit(limit: uint) {
231
231
unsafe fn target_record_sp_limit ( _: uint ) {
232
232
}
233
233
234
+ // powerpc - FIXME(POWERPC): missing...
235
+ #[ cfg( target_arch = "powerpc" ) ]
236
+ unsafe fn target_record_sp_limit ( _: uint ) {
237
+ }
238
+
239
+
234
240
// iOS segmented stack is disabled for now, see related notes
235
241
#[ cfg( all( target_arch = "arm" , target_os = "ios" ) ) ] #[ inline( always) ]
236
242
unsafe fn target_record_sp_limit ( _: uint ) {
@@ -326,6 +332,12 @@ pub unsafe fn get_sp_limit() -> uint {
326
332
1024
327
333
}
328
334
335
+ // powepc - FIXME(POWERPC): missing...
336
+ #[ cfg( target_arch = "powerpc" ) ]
337
+ unsafe fn target_get_sp_limit ( ) -> uint {
338
+ 1024
339
+ }
340
+
329
341
// iOS doesn't support segmented stacks yet. This function might
330
342
// be called by runtime though so it is unsafe to mark it as
331
343
// unreachable, let's return a fixed constant.
You can’t perform that action at this time.
0 commit comments