File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 11/*
2- * Copyright (c) 1999, 2023 , Oracle and/or its affiliates. All rights reserved.
2+ * Copyright (c) 1999, 2024 , Oracle and/or its affiliates. All rights reserved.
33 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44 *
55 * This code is free software; you can redistribute it and/or modify it
@@ -66,7 +66,7 @@ class ciBytecodeStream : StackObj {
6666 Bytecodes::Code _raw_bc; // Current bytecode, raw form
6767
6868 void reset ( address base, unsigned int size ) {
69- _bc_start =_was_wide = 0 ;
69+ _bc_start = _was_wide = nullptr ;
7070 _start = _pc = base; _end = base + size;
7171 }
7272
Original file line number Diff line number Diff line change @@ -148,7 +148,7 @@ class ImplicitExceptionTable {
148148 ReallocMark _nesting; // assertion check for reallocations
149149
150150public:
151- ImplicitExceptionTable ( ) : _size(0 ), _len(0 ), _data(0 ) { }
151+ ImplicitExceptionTable ( ) : _size(0 ), _len(0 ), _data(nullptr ) { }
152152 // (run-time) construction from nmethod
153153 ImplicitExceptionTable (const nmethod *nm);
154154
You can’t perform that action at this time.
0 commit comments