hotspot/src/share/vm/code/debugInfo.hpp
changeset 23182 6940057d6552
parent 22234 da823d78ad65
child 31406 4121166054b6
--- a/hotspot/src/share/vm/code/debugInfo.hpp	Sat Mar 01 09:56:15 2014 -0800
+++ b/hotspot/src/share/vm/code/debugInfo.hpp	Mon Mar 03 13:58:52 2014 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2014, 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
@@ -273,8 +273,8 @@
   }
   Method* read_method() {
     Method* o = (Method*)(code()->metadata_at(read_int()));
-    assert(o == NULL ||
-           o->is_metaspace_object(), "meta data only");
+    // is_metadata() is a faster check than is_metaspace_object()
+    assert(o == NULL || o->is_metadata(), "meta data only");
     return o;
   }
   ScopeValue* read_object_value();