src/share/vm/interpreter/interpreterRuntime.cpp

changeset 8368
32b682649973
parent 7803
9dc350b9e498
child 8370
a02fdb3c047d
     1.1 --- a/src/share/vm/interpreter/interpreterRuntime.cpp	Mon Jan 11 13:41:45 2016 -0800
     1.2 +++ b/src/share/vm/interpreter/interpreterRuntime.cpp	Fri Jan 15 22:33:15 2016 +0000
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 1997, 2016, 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 @@ -1047,7 +1047,8 @@
    1.11    char sig_type = '\0';
    1.12  
    1.13    switch(cp_entry->flag_state()) {
    1.14 -    case btos: sig_type = 'Z'; break;
    1.15 +    case btos: sig_type = 'B'; break;
    1.16 +    case ztos: sig_type = 'Z'; break;
    1.17      case ctos: sig_type = 'C'; break;
    1.18      case stos: sig_type = 'S'; break;
    1.19      case itos: sig_type = 'I'; break;

mercurial