comparison src/share/vm/classfile/dictionary.hpp @ 12316:190899198332

7195622: CheckUnhandledOops has limited usefulness now Summary: Enable CHECK_UNHANDLED_OOPS in fastdebug builds across all supported platforms. Reviewed-by: coleenp, hseigel, dholmes, stefank, twisti, ihse, rdurbin Contributed-by: lois.foltan@oracle.com
author hseigel
date Thu, 26 Sep 2013 10:25:02 -0400
parents 43083e670adf
children aa6f2ea19d8f
comparison
equal deleted inserted replaced
12315:c1fbf21c7397 12316:190899198332
1 /* 1 /*
2 * Copyright (c) 2003, 2012, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
262 method()->print_value_on(st); 262 method()->print_value_on(st);
263 printed = true; 263 printed = true;
264 } 264 }
265 if (method_type() != NULL) { 265 if (method_type() != NULL) {
266 if (printed) st->print(" and "); 266 if (printed) st->print(" and ");
267 st->print(INTPTR_FORMAT, method_type()); 267 st->print(INTPTR_FORMAT, (void *)method_type());
268 printed = true; 268 printed = true;
269 } 269 }
270 st->print_cr(printed ? "" : "(empty)"); 270 st->print_cr(printed ? "" : "(empty)");
271 } 271 }
272 }; 272 };