From 72ef412b56becfbdd54f239ea672a48b163ff1d2 Mon Sep 17 00:00:00 2001 From: Jing Yu Date: Thu, 11 Nov 2010 11:48:23 -0800 Subject: [PATCH] Fix uninitialized variable warning(error). Change-Id: I10815b033199758976950b28af7cc412f093a7f5 --- vm/compiler/codegen/arm/Assemble.c | 1 + 1 file changed, 1 insertion(+) diff --git a/vm/compiler/codegen/arm/Assemble.c b/vm/compiler/codegen/arm/Assemble.c index 4f54f1ebe..cf5c41fe4 100644 --- a/vm/compiler/codegen/arm/Assemble.c +++ b/vm/compiler/codegen/arm/Assemble.c @@ -1616,6 +1616,7 @@ const Method *dvmJitToPatchPredictedChain(const Method *method, newCell.branch = assembleChainingBranch(branchOffset, true); newCell.clazz = clazz; newCell.method = method; + newCell.stagedClazz = NULL; /* * Enter the work order to the queue and the chaining cell will be patched -- 2.11.0