diff options
Diffstat (limited to 'src/compiler/CompilerIR.h')
| -rw-r--r-- | src/compiler/CompilerIR.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/compiler/CompilerIR.h b/src/compiler/CompilerIR.h index 14af69d3d6..8dcf56bdd4 100644 --- a/src/compiler/CompilerIR.h +++ b/src/compiler/CompilerIR.h @@ -47,6 +47,7 @@ typedef struct RegLocation { } RegLocation; #define INVALID_SREG (-1) +#define INVALID_VREG (0xFFFFU) #define INVALID_REG (0x3F) #define INVALID_OFFSET (-1) @@ -201,8 +202,8 @@ typedef struct CompilationUnit { int assemblerRetries; std::vector<short> codeBuffer; std::vector<uint32_t> mappingTable; - std::vector<uint32_t> coreVmapTable; - std::vector<short> fpVmapTable; + std::vector<uint16_t> coreVmapTable; + std::vector<uint16_t> fpVmapTable; bool printMe; bool hasClassLiterals; // Contains class ptrs used as literals bool hasLoop; // Contains a loop |