src/cpu/x86/vm/interp_masm_x86_32.cpp

changeset 9604
da2e98c027fd
parent 8368
32b682649973
child 9637
eef07cd490d4
     1.1 --- a/src/cpu/x86/vm/interp_masm_x86_32.cpp	Thu Dec 06 13:26:54 2018 -0500
     1.2 +++ b/src/cpu/x86/vm/interp_masm_x86_32.cpp	Thu Dec 20 20:11:38 2018 +0000
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 1997, 2018, 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 @@ -1445,5 +1445,7 @@
    1.11    incrementl(scratch, increment);
    1.12    movl(counter_addr, scratch);
    1.13    andl(scratch, mask);
    1.14 -  jcc(cond, *where);
    1.15 +  if (where != NULL) {
    1.16 +    jcc(cond, *where);
    1.17 +  }
    1.18  }

mercurial