comparison src/share/vm/classfile/dictionary.hpp @ 12355:cefad50507d8

Merge with hs25-b53
author Gilles Duboscq <duboscq@ssw.jku.at>
date Fri, 11 Oct 2013 10:38:03 +0200
parents 190899198332
children aa6f2ea19d8f
comparison
equal deleted inserted replaced
12058:ccb4f2af2319 12355:cefad50507d8
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 };