src/share/vm/opto/callnode.hpp

changeset 5614
9758d9f36299
parent 5110
6f3fd5150b67
child 5643
3bfb204913de
     1.1 --- a/src/share/vm/opto/callnode.hpp	Thu Aug 29 21:46:09 2013 +0200
     1.2 +++ b/src/share/vm/opto/callnode.hpp	Thu Aug 29 18:56:29 2013 -0400
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
     1.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.8   *
     1.9   * This code is free software; you can redistribute it and/or modify it
    1.10 @@ -216,7 +216,7 @@
    1.11    // Because JVMState objects live over the entire lifetime of the
    1.12    // Compile object, they are allocated into the comp_arena, which
    1.13    // does not get resource marked or reset during the compile process
    1.14 -  void *operator new( size_t x, Compile* C ) { return C->comp_arena()->Amalloc(x); }
    1.15 +  void *operator new( size_t x, Compile* C ) throw() { return C->comp_arena()->Amalloc(x); }
    1.16    void operator delete( void * ) { } // fast deallocation
    1.17  
    1.18    // Create a new JVMState, ready for abstract interpretation.

mercurial