mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 11:04:34 +02:00
8149374: Replace C1-specific collection classes with universal collection classes
Reviewed-by: kvn, mgerdin, coleenp
This commit is contained in:
parent
7fc81004e3
commit
6b6686bd43
37 changed files with 269 additions and 635 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -127,7 +127,7 @@ void LIR_Assembler::append_code_stub(CodeStub* stub) {
|
|||
|
||||
void LIR_Assembler::emit_stubs(CodeStubList* stub_list) {
|
||||
for (int m = 0; m < stub_list->length(); m++) {
|
||||
CodeStub* s = (*stub_list)[m];
|
||||
CodeStub* s = stub_list->at(m);
|
||||
|
||||
check_codespace();
|
||||
CHECK_BAILOUT();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue