hotspot/src/share/vm/opto/callGenerator.hpp
changeset 19696 bd5a0131bde1
parent 17383 3665c0901a0d
child 20073 bfc95277d42b
--- a/hotspot/src/share/vm/opto/callGenerator.hpp	Thu Aug 29 21:46:09 2013 +0200
+++ b/hotspot/src/share/vm/opto/callGenerator.hpp	Thu Aug 29 18:56:29 2013 -0400
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -260,7 +260,7 @@
   // Because WarmInfo objects live over the entire lifetime of the
   // Compile object, they are allocated into the comp_arena, which
   // does not get resource marked or reset during the compile process
-  void *operator new( size_t x, Compile* C ) { return C->comp_arena()->Amalloc(x); }
+  void *operator new( size_t x, Compile* C ) throw() { return C->comp_arena()->Amalloc(x); }
   void operator delete( void * ) { } // fast deallocation
 
   static WarmCallInfo* always_hot();