< prev index next >

src/share/vm/c1/c1_LIR.cpp

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 241,250 **** --- 241,252 ---- case lir_ushr: assert(in_opr1() == result_opr() || in_opr2()->is_constant() || threeOperandForm, "opr1 and result must match or shift count is constant"); assert(in_opr1()->is_valid() && in_opr2()->is_valid(), "must be valid"); break; + default: + break; } } #endif }
*** 393,402 **** --- 395,406 ---- assert(in_opr()->is_register(), "must be"); break; case lir_return: assert(in_opr()->is_register() || in_opr()->is_illegal(), "must be"); break; + default: + break; } } void LIR_OpRTCall::verify() const { assert(strcmp(Runtime1::name_for_address(addr()), "<unknown function>") != 0, "unknown function");
< prev index next >