diff src/share/vm/opto/vectornode.cpp @ 6617:4b0d6fd74911

7192964: assert(false) failed: bad AD file Summary: Shifts with loop variant counts "a[i]=1<<b[i];" should not be vectorized since hw does not support it. Reviewed-by: twisti
author kvn
date Tue, 21 Aug 2012 14:50:02 -0700
parents 006050192a5a
children 5af51c882207
line wrap: on
line diff
--- a/src/share/vm/opto/vectornode.cpp	Tue Aug 21 10:48:50 2012 -0700
+++ b/src/share/vm/opto/vectornode.cpp	Tue Aug 21 14:50:02 2012 -0700
@@ -180,9 +180,9 @@
   return false;
 }
 
-// Check if input is loop invarient vector.
+// Check if input is loop invariant vector.
 bool VectorNode::is_invariant_vector(Node* n) {
-  // Only Replicate vector nodes are loop invarient for now.
+  // Only Replicate vector nodes are loop invariant for now.
   switch (n->Opcode()) {
   case Op_ReplicateB:
   case Op_ReplicateS: