Skip to content

Commit

Permalink
Fix whitespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
mcimadamore committed Oct 22, 2020
1 parent 0c89229 commit 2c2d2a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/hotspot/cpu/aarch64/universalUpcallHandler_aarch64.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ addres ProgrammableUpcallHandler::generate_upcall_stub(jobject rec, jobject jabi
ResourceMark rm;
const ABIDescriptor abi = ForeignGlobals::parse_abi_descriptor(jabi);
const BufferLayout layout = ForeignGlobals::parse_buffer_layout(jlayout);

CodeBuffer buffer("upcall_stub", 1024, upcall_stub_size);

MacroAssembler* _masm = new MacroAssembler(&buffer);
Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/cpu/x86/universalUpcallHandler_x86.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ static void upcall_helper(jobject rec, address buff) {
JavaCalls::call_static(&result, upcall_info.upcall_method.klass, upcall_info.upcall_method.name, upcall_info.upcall_method.sig, &args, thread);
}

address ProgrammableUpcallHandler::generate_upcall_stub(jobject rec, jobject jabi, jobject jlayout) {
address ProgrammableUpcallHandler::generate_upcall_stub(jobject rec, jobject jabi, jobject jlayout) {
ResourceMark rm;
const ABIDescriptor abi = ForeignGlobals::parse_abi_descriptor(jabi);
const BufferLayout layout = ForeignGlobals::parse_buffer_layout(jlayout);
Expand Down

0 comments on commit 2c2d2a7

Please sign in to comment.