summaryrefslogtreecommitdiffstats
path: root/vm/compiler/codegen
diff options
context:
space:
mode:
authorbuzbee <buzbee@google.com>2011-03-31 11:18:28 -0700
committerbuzbee <buzbee@google.com>2011-03-31 11:18:28 -0700
commit3a56e9d90e0afa8f293ea94a8fcb7cb017bbe9a6 (patch)
treec292f67220395c6186f3ec60e51c3e28b04f9d39 /vm/compiler/codegen
parentbd7865b4fb7b1c94b7c7911ef8f83af0a3367a4e (diff)
downloadandroid_dalvik-3a56e9d90e0afa8f293ea94a8fcb7cb017bbe9a6.tar.gz
android_dalvik-3a56e9d90e0afa8f293ea94a8fcb7cb017bbe9a6.tar.bz2
android_dalvik-3a56e9d90e0afa8f293ea94a8fcb7cb017bbe9a6.zip
Add missing JUMBO ops [fixed]
Neglected to git-add the most recent version in Change I0c0b6d17. Change-Id: I5f9e630f652edcf70ab893ade6f559056ed31f8f
Diffstat (limited to 'vm/compiler/codegen')
-rw-r--r--vm/compiler/codegen/arm/CodegenDriver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm/compiler/codegen/arm/CodegenDriver.c b/vm/compiler/codegen/arm/CodegenDriver.c
index 7d76e890f..e80ac0f9a 100644
--- a/vm/compiler/codegen/arm/CodegenDriver.c
+++ b/vm/compiler/codegen/arm/CodegenDriver.c
@@ -1636,7 +1636,7 @@ static bool handleFmt21c_Fmt31c_Fmt41c(CompilationUnit *cUnit, MIR *mir)
}
isVolatile = (opcode == OP_SGET_VOLATILE) ||
- (opcode == OP_SGET_VOLATILE_VOLATILE) ||
+ (opcode == OP_SGET_VOLATILE_JUMBO) ||
(opcode == OP_SGET_OBJECT_VOLATILE) ||
(opcode == OP_SGET_OBJECT_VOLATILE_JUMBO) ||
dvmIsVolatileField((Field *) fieldPtr);