From 0751743d8625ef531099985e14fc0278d35938c2 Mon Sep 17 00:00:00 2001 From: "Jonathan A. Kollasch" Date: Tue, 6 Dec 2016 16:00:09 -0600 Subject: [PATCH] libpanic_unwind: UNWIND_DATA_REG for sparc64 --- src/libpanic_unwind/gcc.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/libpanic_unwind/gcc.rs b/src/libpanic_unwind/gcc.rs index 73264fab69c2..e8b3a9a42c29 100644 --- a/src/libpanic_unwind/gcc.rs +++ b/src/libpanic_unwind/gcc.rs @@ -133,6 +133,9 @@ const UNWIND_DATA_REG: (i32, i32) = (3, 4); // R3, R4 / X3, X4 #[cfg(target_arch = "s390x")] const UNWIND_DATA_REG: (i32, i32) = (6, 7); // R6, R7 +#[cfg(target_arch = "sparc64")] +const UNWIND_DATA_REG: (i32, i32) = (24, 25); // I0, I1 + // The following code is based on GCC's C and C++ personality routines. For reference, see: // https://github.com/gcc-mirror/gcc/blob/master/libstdc++-v3/libsupc++/eh_personality.cc // https://github.com/gcc-mirror/gcc/blob/trunk/libgcc/unwind-c.c