mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-19 10:34:38 +02:00
8254166: Zero: return-type warning in zeroInterpreter_zero.cpp
Reviewed-by: sgehwolf
This commit is contained in:
parent
894ec76c11
commit
7952c06b36
1 changed files with 3 additions and 1 deletions
|
@ -138,7 +138,9 @@ intptr_t narrow(BasicType type, intptr_t result) {
|
||||||
case T_DOUBLE:
|
case T_DOUBLE:
|
||||||
case T_VOID:
|
case T_VOID:
|
||||||
return result;
|
return result;
|
||||||
default : ShouldNotReachHere();
|
default:
|
||||||
|
ShouldNotReachHere();
|
||||||
|
return result; // silence compiler warnings
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue