8143245: Zero build requires disabled warnings

Reviewed-by: dholmes, coleenp
This commit is contained in:
Severin Gehwolf 2016-02-17 17:03:31 -05:00
parent c867b023b6
commit 3a99569b6f
5 changed files with 20 additions and 14 deletions

View file

@ -773,7 +773,7 @@ InterpreterFrame *InterpreterFrame::build(int size, TRAPS) {
}
BasicType CppInterpreter::result_type_of(Method* method) {
BasicType t;
BasicType t = T_ILLEGAL; // silence compiler warnings
switch (method->result_index()) {
case 0 : t = T_BOOLEAN; break;
case 1 : t = T_CHAR; break;