diff options
| author | Ben Cheng <bccheng@android.com> | 2010-03-31 11:59:18 -0700 |
|---|---|---|
| committer | Ben Cheng <bccheng@android.com> | 2010-03-31 12:17:29 -0700 |
| commit | a497359afa1abe4c5780c8799c6fe0edab551c2d (patch) | |
| tree | ec01e200a99247509f298221d03459324710bf0d /vm/compiler/codegen/arm/CodegenCommon.c | |
| parent | d4b078315ae7335c385f70b32810959bd228d976 (diff) | |
Fix a race condition in JIT state refresh under debugging / misc code cleanup.
Bug: 2561283
Change-Id: I9fd94928f3e661de97098808340ea92b28cafa07
Diffstat (limited to 'vm/compiler/codegen/arm/CodegenCommon.c')
| -rw-r--r-- | vm/compiler/codegen/arm/CodegenCommon.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 */ |
