8254166: Zero: return-type warning in zeroInterpreter_zero.cpp

Reviewed-by: sgehwolf
This commit is contained in:
Aleksey Shipilev 2020-10-08 08:10:55 +00:00
parent 894ec76c11
commit 7952c06b36

@ -138,7 +138,9 @@ intptr_t narrow(BasicType type, intptr_t result) {
case T_DOUBLE:
case T_VOID:
return result;
default : ShouldNotReachHere();
default:
ShouldNotReachHere();
return result; // silence compiler warnings
}
}