hotspot/src/share/vm/c1/c1_Runtime1.cpp
changeset 17370 59a0620561fa
parent 16611 6807a703dd6b
child 18507 61bfc8995bb3
--- a/hotspot/src/share/vm/c1/c1_Runtime1.cpp	Wed May 08 21:06:46 2013 -0400
+++ b/hotspot/src/share/vm/c1/c1_Runtime1.cpp	Fri May 10 08:27:30 2013 -0700
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1999, 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1999, 2013, 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
@@ -1261,7 +1261,7 @@
 
   if (length == 0) return ac_ok;
   if (src->is_typeArray()) {
-    Klass* const klass_oop = src->klass();
+    Klass* klass_oop = src->klass();
     if (klass_oop != dst->klass()) return ac_failed;
     TypeArrayKlass* klass = TypeArrayKlass::cast(klass_oop);
     const int l2es = klass->log2_element_size();