Replace throw_exception with throw in some cases
[deliverable/binutils-gdb.git] / gdb / aarch64-tdep.c
index ebd84e9dc2beaa78963ee08b868d509b066493df..7eecb52eb11d160ebbae319aad6e8949855f1cca 100644 (file)
@@ -881,7 +881,7 @@ aarch64_make_prologue_cache (struct frame_info *this_frame, void **this_cache)
   catch (const gdb_exception_error &ex)
     {
       if (ex.error != NOT_AVAILABLE_ERROR)
-       throw_exception (ex);
+       throw;
     }
 
   return cache;
@@ -1015,7 +1015,7 @@ aarch64_make_stub_cache (struct frame_info *this_frame, void **this_cache)
   catch (const gdb_exception_error &ex)
     {
       if (ex.error != NOT_AVAILABLE_ERROR)
-       throw_exception (ex);
+       throw;
     }
 
   return cache;
This page took 0.036672 seconds and 4 git commands to generate.