mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
6888953: some calls to function-like macros are missing semicolons
Reviewed-by: pbk, kvn
This commit is contained in:
parent
83f1d02a67
commit
7e76feaf42
31 changed files with 36 additions and 35 deletions
|
@ -807,7 +807,7 @@ void GenerateOopMap::set_var(int localNo, CellTypeState cts) {
|
|||
}
|
||||
|
||||
CellTypeState GenerateOopMap::get_var(int localNo) {
|
||||
assert(localNo < _max_locals + _nof_refval_conflicts, "variable read error")
|
||||
assert(localNo < _max_locals + _nof_refval_conflicts, "variable read error");
|
||||
if (localNo < 0 || localNo > _max_locals) {
|
||||
verify_error("variable read error: r%d", localNo);
|
||||
return valCTS; // just to pick something;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue