src/share/vm/classfile/stackMapFrame.hpp

changeset 4942
f36e073d56a4
parent 4526
ab826603e572
child 6824
2373a1f4987c
child 6960
b2daaf70fab2
     1.1 --- a/src/share/vm/classfile/stackMapFrame.hpp	Fri Apr 12 12:22:59 2013 -0700
     1.2 +++ b/src/share/vm/classfile/stackMapFrame.hpp	Fri Apr 12 15:53:30 2013 -0700
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 2003, 2012, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 2003, 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 @@ -175,14 +175,14 @@
    1.11        ErrorContext* ctx, TRAPS) const;
    1.12  
    1.13    inline void set_mark() {
    1.14 -#ifdef DEBUG
    1.15 +#ifdef ASSERT
    1.16      // Put bogus type to indicate it's no longer valid.
    1.17      if (_stack_mark != -1) {
    1.18        for (int i = _stack_mark - 1; i >= _stack_size; --i) {
    1.19          _stack[i] = VerificationType::bogus_type();
    1.20        }
    1.21      }
    1.22 -#endif // def DEBUG
    1.23 +#endif // def ASSERT
    1.24      _stack_mark = _stack_size;
    1.25    }
    1.26  

mercurial