src/share/vm/c1/c1_LIR.cpp

changeset 4465
203f64878aab
parent 4106
7eca5de9e0b6
child 4625
84a926fe53d0
     1.1 --- a/src/share/vm/c1/c1_LIR.cpp	Wed Jan 16 16:30:04 2013 +0100
     1.2 +++ b/src/share/vm/c1/c1_LIR.cpp	Thu Jan 17 10:25:16 2013 -0500
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 2000, 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 @@ -1563,7 +1563,7 @@
    1.11    switch (type()) {
    1.12      case T_ADDRESS:out->print("address:%d",as_jint());          break;
    1.13      case T_INT:    out->print("int:%d",   as_jint());           break;
    1.14 -    case T_LONG:   out->print("lng:%lld", as_jlong());          break;
    1.15 +    case T_LONG:   out->print("lng:" JLONG_FORMAT, as_jlong()); break;
    1.16      case T_FLOAT:  out->print("flt:%f",   as_jfloat());         break;
    1.17      case T_DOUBLE: out->print("dbl:%f",   as_jdouble());        break;
    1.18      case T_OBJECT: out->print("obj:0x%x", as_jobject());        break;

mercurial