< prev index next >

src/share/vm/c1/c1_GraphBuilder.cpp

Print this page

        

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

@@ -4258,15 +4258,19 @@
   Value array = args->at(0);
   Value index = args->at(1);
   if (is_store) {
     Value value = args->at(2);
     Instruction* store = append(new StoreIndexed(array, index, NULL, T_CHAR, value, state_before, false, true));
+#ifndef ASSERT
     store->set_flag(Instruction::NeedsRangeCheckFlag, false);
+#endif
     _memory->store_value(value);
   } else {
     Instruction* load = append(new LoadIndexed(array, index, NULL, T_CHAR, state_before, true));
+#ifndef ASSERT
     load->set_flag(Instruction::NeedsRangeCheckFlag, false);
+#endif
     push(load->type(), load);
   }
 }
 
 void GraphBuilder::print_inlining(ciMethod* callee, const char* msg, bool success) {
< prev index next >