< prev index next >

src/share/vm/c1/c1_LIR.cpp

Print this page

        

@@ -1,7 +1,7 @@
 /*
- * Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
+ * 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.

@@ -393,10 +393,12 @@
     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 >