8287249: Zero: Missing BarrierSetNMethod::arm() method

Reviewed-by: shade
This commit is contained in:
Zhengyu Gu 2022-05-24 18:12:03 +00:00
parent 25669bb667
commit 194bc08a89

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2018, 2022, 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
@ -30,6 +30,10 @@ void BarrierSetNMethod::deoptimize(nmethod* nm, address* return_address_ptr) {
ShouldNotReachHere();
}
void BarrierSetNMethod::arm(nmethod* nm, int value) {
ShouldNotReachHere();
}
void BarrierSetNMethod::disarm(nmethod* nm) {
ShouldNotReachHere();
}