| commit | d867b23602771536cc90c33f59471c022e242911 | [log] [tgz] |
|---|---|---|
| author | Bill Buzbee <buzbee@google.com> | Thu Feb 25 15:38:40 2010 -0800 |
| committer | Bill Buzbee <buzbee@google.com> | Thu Feb 25 15:38:40 2010 -0800 |
| tree | 3113348cb50222161da7a1df3a03fb3178eed250 | |
| parent | ca5ac8792c0dc7cb33728ba3389fcc7d7b76772b [diff] [blame] |
Jit: fix typo that caused incorrect def mask for blr's.
diff --git a/vm/compiler/codegen/arm/CodegenCommon.c b/vm/compiler/codegen/arm/CodegenCommon.c index ee4c877..a3a8d54 100644 --- a/vm/compiler/codegen/arm/CodegenCommon.c +++ b/vm/compiler/codegen/arm/CodegenCommon.c
@@ -107,7 +107,7 @@ lir->defMask |= ENCODE_REG_SP; } - if (flags & REG_DEF_SP) { + if (flags & REG_DEF_LR) { lir->defMask |= ENCODE_REG_LR; }