mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-25 13:54:38 +02:00
8140604: Internal Error runtime/stubRoutines.hpp:392 assert(_intrinsic_log != 0L) failed: must be defined
Fix the faulty assert, remove remaining _intrinsic_log references Reviewed-by: roland
This commit is contained in:
parent
3ebee2a2b9
commit
39f99d5815
2 changed files with 1 additions and 7 deletions
|
@ -216,7 +216,6 @@ class StubRoutines: AllStatic {
|
|||
// intrinsic version returns the same result as the strict version
|
||||
// then they can be set to the appropriate function from
|
||||
// SharedRuntime.
|
||||
static double (*_intrinsic_log)(double);
|
||||
static double (*_intrinsic_log10)(double);
|
||||
static double (*_intrinsic_pow)(double, double);
|
||||
static double (*_intrinsic_sin)(double);
|
||||
|
@ -384,12 +383,8 @@ class StubRoutines: AllStatic {
|
|||
|
||||
static address zero_aligned_words() { return _zero_aligned_words; }
|
||||
|
||||
static double intrinsic_log(double d) {
|
||||
assert(_intrinsic_log != NULL, "must be defined");
|
||||
return _intrinsic_log(d);
|
||||
}
|
||||
static double intrinsic_log10(double d) {
|
||||
assert(_intrinsic_log != NULL, "must be defined");
|
||||
assert(_intrinsic_log10 != NULL, "must be defined");
|
||||
return _intrinsic_log10(d);
|
||||
}
|
||||
static double intrinsic_pow(double d, double d2) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue