diff options
| author | Dan Bornstein <danfuzz@android.com> | 2010-12-01 17:02:26 -0800 |
|---|---|---|
| committer | Dan Bornstein <danfuzz@android.com> | 2010-12-01 17:02:26 -0800 |
| commit | 9a1f81699cc05b58378ffb9aadb4e97677943791 (patch) | |
| tree | dc005d72c75a4e81a6a75ae4dd32370655ad0488 /vm/compiler/codegen/arm/ArchUtility.c | |
| parent | 5befcb64d815614a855199e19a0236ec3a01091c (diff) | |
It's "opcode" not "opCode".
Similarly "Opcode" not "OpCode".
This appears to be the general worldwide consensus on the matter. Other
residents of my office didn't seem to mind one way or the other how it's
spelled in our code, but for whatever reason, it really bugged me.
Change-Id: Ia0b73d19c54aefc0f543a9c9451dda22ee876a59
Diffstat (limited to 'vm/compiler/codegen/arm/ArchUtility.c')
| -rw-r--r-- | vm/compiler/codegen/arm/ArchUtility.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vm/compiler/codegen/arm/ArchUtility.c b/vm/compiler/codegen/arm/ArchUtility.c index 764930092..0b76eb58b 100644 --- a/vm/compiler/codegen/arm/ArchUtility.c +++ b/vm/compiler/codegen/arm/ArchUtility.c @@ -283,7 +283,7 @@ void dvmDumpLIRInsn(LIR *arg, unsigned char *baseAddr) const bool dumpNop = false; /* Handle pseudo-ops individually, and all regular insns as a group */ - switch(lir->opCode) { + switch(lir->opcode) { case kArmChainingCellBottom: LOGD("-------- end of chaining cells (0x%04x)\n", offset); break; @@ -345,9 +345,9 @@ void dvmDumpLIRInsn(LIR *arg, unsigned char *baseAddr) if (lir->isNop && !dumpNop) { break; } - buildInsnString(EncodingMap[lir->opCode].name, lir, opName, + buildInsnString(EncodingMap[lir->opcode].name, lir, opName, baseAddr, 256); - buildInsnString(EncodingMap[lir->opCode].fmt, lir, buf, baseAddr, + buildInsnString(EncodingMap[lir->opcode].fmt, lir, buf, baseAddr, 256); LOGD("%p (%04x): %-8s%s%s\n", baseAddr + offset, offset, opName, buf, |
