hotspot/src/share/vm/ci/ciConstant.cpp
changeset 24424 2658d7834c6e
parent 7397 5b173b4ca846
equal deleted inserted replaced
24358:8528b67f6562 24424:2658d7834c6e
     1 /*
     1 /*
     2  * Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1999, 2014, 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.
    46   case T_SHORT:
    46   case T_SHORT:
    47   case T_INT:
    47   case T_INT:
    48     tty->print("%d", _value._int);
    48     tty->print("%d", _value._int);
    49     break;
    49     break;
    50   case T_LONG:
    50   case T_LONG:
    51     tty->print(INT64_FORMAT, _value._long);
    51     tty->print(INT64_FORMAT, (int64_t)(_value._long));
    52     break;
    52     break;
    53   case T_FLOAT:
    53   case T_FLOAT:
    54     tty->print("%f", _value._float);
    54     tty->print("%f", _value._float);
    55     break;
    55     break;
    56   case T_DOUBLE:
    56   case T_DOUBLE: