diff options
author | Ash Wolf <ninji@wuffs.org> | 2022-12-14 01:00:56 +0000 |
---|---|---|
committer | Ash Wolf <ninji@wuffs.org> | 2022-12-14 01:00:56 +0000 |
commit | bc1321735c15104ffad195e1509cab5f3a044260 (patch) | |
tree | 8b2a54226e10e8a564a2287cd8e65b577e0fd6c2 /includes/compiler/UseDefChains.h | |
parent | 25bab8b1fb2fc851ea3f1f630b3de65ca6afdc22 (diff) | |
download | MWCC-bc1321735c15104ffad195e1509cab5f3a044260.tar.gz MWCC-bc1321735c15104ffad195e1509cab5f3a044260.zip |
rename some stuff and use an enum for RegClass
Diffstat (limited to '')
-rw-r--r-- | includes/compiler/UseDefChains.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/includes/compiler/UseDefChains.h b/includes/compiler/UseDefChains.h index 6957897..365b331 100644 --- a/includes/compiler/UseDefChains.h +++ b/includes/compiler/UseDefChains.h @@ -2,7 +2,6 @@ #define COMPILER_USEDEFCHAINS_H #include "compiler/common.h" -#include "compiler/Registers.h" #include "compiler/PCodeInfo.h" #ifdef __MWERKS__ @@ -10,7 +9,7 @@ #endif typedef struct TinyValue { PCOpKind kind; - unsigned char arg; + RegClass arg; union { short reg; Object *object; |