From 8de5916666ab5d146ac1bdac7d7748e197ae347e Mon Sep 17 00:00:00 2001 From: Aart Bik Date: Fri, 21 Apr 2017 09:42:01 -0700 Subject: Factor vector unary/binary shared code out into superclass. Test: test-art-target, test-art-host Change-Id: I42770d9a9142f2e53d3b5bd60bd25593b2154a7c --- compiler/optimizing/nodes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'compiler/optimizing/nodes.h') diff --git a/compiler/optimizing/nodes.h b/compiler/optimizing/nodes.h index af953c8f99..8368026e92 100644 --- a/compiler/optimizing/nodes.h +++ b/compiler/optimizing/nodes.h @@ -1362,7 +1362,6 @@ class HLoopInformationOutwardIterator : public ValueObject { M(UShr, BinaryOperation) \ M(Xor, BinaryOperation) \ M(VecReplicateScalar, VecUnaryOperation) \ - M(VecSetScalars, VecUnaryOperation) \ M(VecSumReduce, VecUnaryOperation) \ M(VecCnv, VecUnaryOperation) \ M(VecNeg, VecUnaryOperation) \ @@ -1382,6 +1381,7 @@ class HLoopInformationOutwardIterator : public ValueObject { M(VecShl, VecBinaryOperation) \ M(VecShr, VecBinaryOperation) \ M(VecUShr, VecBinaryOperation) \ + M(VecSetScalars, VecOperation) \ M(VecMultiplyAccumulate, VecOperation) \ M(VecLoad, VecMemoryOperation) \ M(VecStore, VecMemoryOperation) \ -- cgit v1.2.3-59-g8ed1b