From a497359afa1abe4c5780c8799c6fe0edab551c2d Mon Sep 17 00:00:00 2001 From: Ben Cheng Date: Wed, 31 Mar 2010 11:59:18 -0700 Subject: Fix a race condition in JIT state refresh under debugging / misc code cleanup. Bug: 2561283 Change-Id: I9fd94928f3e661de97098808340ea92b28cafa07 --- vm/compiler/codegen/arm/CodegenCommon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vm/compiler/codegen/arm/CodegenCommon.c') diff --git a/vm/compiler/codegen/arm/CodegenCommon.c b/vm/compiler/codegen/arm/CodegenCommon.c index 8f5c11da4..0cec99df8 100644 --- a/vm/compiler/codegen/arm/CodegenCommon.c +++ b/vm/compiler/codegen/arm/CodegenCommon.c @@ -370,7 +370,7 @@ extern ArmLIR *genCheckCommon(CompilationUnit *cUnit, int dOffset, if (pcrLabel == NULL) { int dPC = (int) (cUnit->method->insns + dOffset); pcrLabel = dvmCompilerNew(sizeof(ArmLIR), true); - pcrLabel->opCode = ARM_PSEUDO_kPCReconstruction_CELL; + pcrLabel->opCode = kArmPseudoPCReconstructionCell; pcrLabel->operands[0] = dPC; pcrLabel->operands[1] = dOffset; /* Insert the place holder to the growable list */ -- cgit v1.2.3