summaryrefslogtreecommitdiff
path: root/compiler/optimizing/nodes_vector.h
diff options
context:
space:
mode:
author Vladimir Marko <vmarko@google.com> 2017-10-19 09:21:21 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2017-10-19 09:21:21 +0000
commitb277aa1385f7f4593c9978d8106669142d158f4f (patch)
tree02b4919913ca6193db721f486062b949efb1fbfc /compiler/optimizing/nodes_vector.h
parentdfce43569a32ed7da881796713647cd8051d0d4e (diff)
parent61b922847403ac0e74b6477114c81a28ac2e01a0 (diff)
Merge "ART: Introduce Uint8 loads in compiled code."
Diffstat (limited to 'compiler/optimizing/nodes_vector.h')
-rw-r--r--compiler/optimizing/nodes_vector.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/optimizing/nodes_vector.h b/compiler/optimizing/nodes_vector.h
index 781a59f661..4e78e4e6a2 100644
--- a/compiler/optimizing/nodes_vector.h
+++ b/compiler/optimizing/nodes_vector.h
@@ -943,8 +943,8 @@ class HVecSADAccumulate FINAL : public HVecOperation {
DCHECK(HasConsistentPackedTypes(accumulator, packed_type));
DCHECK(sad_left->IsVecOperation());
DCHECK(sad_right->IsVecOperation());
- DCHECK_EQ(sad_left->AsVecOperation()->GetPackedType(),
- sad_right->AsVecOperation()->GetPackedType());
+ DCHECK_EQ(ToSignedType(sad_left->AsVecOperation()->GetPackedType()),
+ ToSignedType(sad_right->AsVecOperation()->GetPackedType()));
SetRawInputAt(0, accumulator);
SetRawInputAt(1, sad_left);
SetRawInputAt(2, sad_right);