From 71ac99485e79ad7eb1ba3ea2d404d53bb5784c13 Mon Sep 17 00:00:00 2001 From: buzbee Date: Thu, 1 Mar 2012 17:23:10 -0800 Subject: 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 --- src/compiler/codegen/mips/MipsLIR.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/compiler/codegen/mips/MipsLIR.h') 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 */ -- cgit v1.2.3-59-g8ed1b