Make exception handling more efficient
[deliverable/binutils-gdb.git] / gdb / common / new-op.c
index 8c07ffac23be327adc35ae0626c2781ed2c213c8..7c5dba0be6da571adf38a6af4c47807159ad8bf6 100644 (file)
@@ -60,17 +60,14 @@ operator new (std::size_t sz)
         QUIT gdb_exception.  This is necessary because operator new
         can only ever throw std::bad_alloc, or something that extends
         it.  */
-      TRY
+      try
        {
          malloc_failure (sz);
        }
-      CATCH (ex, RETURN_MASK_ALL)
+      catch (gdb_exception &ex)
        {
-         do_cleanups (all_cleanups ());
-
-         throw gdb_quit_bad_alloc (ex);
+         throw gdb_quit_bad_alloc (std::move (ex));
        }
-      END_CATCH
     }
   return p;
 }
This page took 0.02387 seconds and 4 git commands to generate.