From 8d6ae524ed5d2fed1f9e789d6de9764d374afa43 Mon Sep 17 00:00:00 2001 From: Nicolas Geoffray Date: Thu, 23 Oct 2014 18:32:13 +0100 Subject: Fix wrong unsigned to signed conversions. The HIntConstant node takes an int32_t, so we have to keep things signed. Change-Id: Ib3fa50e87f99118d320cbb381f619d5be9287530 --- compiler/optimizing/builder.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'compiler/optimizing/builder.h') diff --git a/compiler/optimizing/builder.h b/compiler/optimizing/builder.h index c5e02db88c..b55ef0764a 100644 --- a/compiler/optimizing/builder.h +++ b/compiler/optimizing/builder.h @@ -154,7 +154,7 @@ class HGraphBuilder : public ValueObject { // Fills the given object with data as specified in the fill-array-data // instruction. The data must be for long and double arrays. void BuildFillWideArrayData(HInstruction* object, - const uint64_t* data, + const int64_t* data, uint32_t element_count, uint32_t dex_offset); -- cgit v1.2.3