aboutsummaryrefslogtreecommitdiff
path: root/vm/compiler/codegen/arm/LocalOptimizations.c
diff options
context:
space:
mode:
authorBrian Carlstrom <bdc@google.com>2010-12-06 14:23:09 -0800
committerBrian Carlstrom <bdc@google.com>2010-12-06 14:23:09 -0800
commit70624ec99772ce2c6222d066bb7f03a764c45128 (patch)
treeb6dbb9bcb5221db9cdbf106d3c70d5a49e078198 /vm/compiler/codegen/arm/LocalOptimizations.c
parent91b93ea496e8c86f410f302a94c2adf0fc9d8189 (diff)
parent07a9833e6f0700527fa02df302cf91cf431bbca1 (diff)
Merge remote branch 'goog/dalvik-dev' into dalvik-dev-to-master
Diffstat (limited to 'vm/compiler/codegen/arm/LocalOptimizations.c')
-rw-r--r--vm/compiler/codegen/arm/LocalOptimizations.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/vm/compiler/codegen/arm/LocalOptimizations.c b/vm/compiler/codegen/arm/LocalOptimizations.c
index 724fdb7ad..33e1e4188 100644
--- a/vm/compiler/codegen/arm/LocalOptimizations.c
+++ b/vm/compiler/codegen/arm/LocalOptimizations.c
@@ -165,7 +165,7 @@ static void applyLoadStoreElimination(CompilationUnit *cUnit,
/*
* Saw a real instruction that the store can be sunk after
*/
- if (!isPseudoOpCode(checkLIR->opCode)) {
+ if (!isPseudoOpcode(checkLIR->opcode)) {
sinkDistance++;
}
}
@@ -196,7 +196,7 @@ static void applyLoadHoisting(CompilationUnit *cUnit,
continue;
}
- if (firstLoad && (EncodingMap[thisLIR->opCode].flags & IS_LOAD)) {
+ if (firstLoad && (EncodingMap[thisLIR->opcode].flags & IS_LOAD)) {
/*
* Ensure nothing will be hoisted in front of this load because
* it's result will likely be needed soon.
@@ -388,7 +388,7 @@ static void applyLoadHoisting(CompilationUnit *cUnit,
* Saw a real instruction that hosting the load is
* beneficial
*/
- if (!isPseudoOpCode(checkLIR->opCode)) {
+ if (!isPseudoOpcode(checkLIR->opcode)) {
hoistDistance++;
}
}
@@ -491,7 +491,7 @@ static void applyLoadHoisting(CompilationUnit *cUnit,
* Saw a real instruction that hosting the load is
* beneficial
*/
- if (!isPseudoOpCode(checkLIR->opCode)) {
+ if (!isPseudoOpcode(checkLIR->opcode)) {
hoistDistance++;
}
}