diff options
| author | 2012-03-01 17:23:10 -0800 | |
|---|---|---|
| committer | 2012-03-01 17:23:10 -0800 | |
| commit | 71ac99485e79ad7eb1ba3ea2d404d53bb5784c13 (patch) | |
| tree | 1a3a853d1b3b64f3d99b4b8f8dd9d2f85cd13d92 /src/compiler/codegen/mips/MipsLIR.h | |
| parent | 5de3494e4297c0d480409da3fecee39173f1d4e1 (diff) | |
Change assembler to use byte instruction lengths
Change the Arm & Mips instruction templaces to record instruction
size in bytes rather than half-words. Also includes a few Mips
changes to get us in compilable state.
Change-Id: I5a4f6cbd0cb0569805d9dfbd341c244152e59ac7
Diffstat (limited to 'src/compiler/codegen/mips/MipsLIR.h')
| -rw-r--r-- | src/compiler/codegen/mips/MipsLIR.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/codegen/mips/MipsLIR.h b/src/compiler/codegen/mips/MipsLIR.h index 93956d5d5f..9baa3c0083 100644 --- a/src/compiler/codegen/mips/MipsLIR.h +++ b/src/compiler/codegen/mips/MipsLIR.h @@ -547,7 +547,7 @@ typedef struct MipsEncodingMap { int flags; const char *name; const char* fmt; - int size; + int size; /* Size in bytes */ } MipsEncodingMap; /* Keys for target-specific scheduling and other optimization hints */ |