Parcourir la source

fix(aarch64): replace `fp-armv8` with `neon`

`fp-armv8` is an arm feature, not an aarch64 feature.
Lysander Mealy il y a 9 mois
Parent
commit
ac07eba737
1 fichiers modifiés avec 4 ajouts et 4 suppressions
  1. 4 4
      src/unwinder/arch/aarch64.rs

+ 4 - 4
src/unwinder/arch/aarch64.rs

@@ -102,9 +102,9 @@ macro_rules! save {
 #[naked]
 pub extern "C-unwind" fn save_context(f: extern "C" fn(&mut Context, *mut ()), ptr: *mut ()) {
     unsafe {
-        #[cfg(target_feature = "fp-armv8")]
+        #[cfg(target_feature = "neon")]
         save!(gp, fp);
-        #[cfg(not(target_feature = "fp-armv8"))]
+        #[cfg(not(target_feature = "neon"))]
         save!(gp);
     }
 }
@@ -163,9 +163,9 @@ macro_rules! restore {
 
 pub unsafe fn restore_context(ctx: &Context) -> ! {
     unsafe {
-        #[cfg(target_feature = "fp-armv8")]
+        #[cfg(target_feature = "neon")]
         restore!(ctx, gp, fp);
-        #[cfg(not(target_feature = "fp-armv8"))]
+        #[cfg(not(target_feature = "neon"))]
         restore!(ctx, gp);
     }
 }