8197981: Missing return statement in __sync_val_compare_and_swap_8
Reviewed-by: andrew, dholmes
This commit is contained in:
parent
5b51085c98
commit
b65dcfa3a0
src/hotspot/os_cpu
@ -435,6 +435,7 @@ extern "C" {
|
||||
long long unsigned int oldval,
|
||||
long long unsigned int newval) {
|
||||
ShouldNotCallThis();
|
||||
return 0; // silence compiler warnings
|
||||
}
|
||||
};
|
||||
#endif // !_LP64
|
||||
|
@ -479,7 +479,7 @@ extern "C" {
|
||||
long long unsigned int oldval,
|
||||
long long unsigned int newval) {
|
||||
ShouldNotCallThis();
|
||||
return 0; // silence compiler compiler warnings
|
||||
return 0; // silence compiler warnings
|
||||
}
|
||||
};
|
||||
#endif // !_LP64
|
||||
|
Loading…
x
Reference in New Issue
Block a user