From 317f9cebedc0117ce89931a1f28a82e989057c31 Mon Sep 17 00:00:00 2001 From: Nicolas Geoffray Date: Mon, 23 Nov 2015 09:50:18 +0000 Subject: Fix lint error. Change-Id: I29632dc7e49f7ec63040455fa40fcf87e9282e5e --- compiler/optimizing/builder.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'compiler/optimizing/builder.cc') diff --git a/compiler/optimizing/builder.cc b/compiler/optimizing/builder.cc index 590c3ad683..32968a597b 100644 --- a/compiler/optimizing/builder.cc +++ b/compiler/optimizing/builder.cc @@ -1390,7 +1390,7 @@ bool HGraphBuilder::BuildStaticFieldAccess(const Instruction& instruction, HInstruction* cls = constant; Handle klass(hs.NewHandle(resolved_field->GetDeclaringClass())); - if (!IsInitialized(klass, storage_index)){ + if (!IsInitialized(klass, storage_index)) { cls = new (arena_) HClinitCheck(constant, dex_pc); current_block_->AddInstruction(cls); } -- cgit v1.2.3-59-g8ed1b