about summary refs log tree commit diff
path: root/src/libstd/rt
diff options
context:
space:
mode:
authorRicho Healey <richo@psych0tik.net>2015-01-09 20:20:57 -0800
committerRicho Healey <richo@psych0tik.net>2015-01-11 21:14:31 -0800
commitf0d6eee499e898fc0336c72069ab7bac47125c4b (patch)
tree3ce7510bdfea879404304d57256be2d8d7a6477e /src/libstd/rt
parenta2e3993111d40308bc492c5683a08ecd335dbe95 (diff)
downloadrust-f0d6eee499e898fc0336c72069ab7bac47125c4b.tar.gz
rust-f0d6eee499e898fc0336c72069ab7bac47125c4b.zip
powerpc: Add unwinder size REVISIT
Diffstat (limited to 'src/libstd/rt')
-rw-r--r--src/libstd/rt/libunwind.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libstd/rt/libunwind.rs b/src/libstd/rt/libunwind.rs
index 7cc39d7d972..dd9923307d6 100644
--- a/src/libstd/rt/libunwind.rs
+++ b/src/libstd/rt/libunwind.rs
@@ -81,6 +81,9 @@ pub const unwinder_private_data_size: uint = 2;
 #[cfg(any(target_arch = "mips", target_arch = "mipsel"))]
 pub const unwinder_private_data_size: uint = 2;
 
+#[cfg(target_arch = "powerpc")]
+pub const unwinder_private_data_size: uint = 2;
+
 #[repr(C)]
 pub struct _Unwind_Exception {
     pub exception_class: _Unwind_Exception_Class,