diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-04-22 20:06:02 -0400 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-04-22 20:06:02 -0400 |
commit | fc87bc5ea5845b9cdfccc6c8bdc80b91a7be4141 (patch) | |
tree | 52c45360340140a1c8b4970f3f0cd67b830ec9e3 /all.h | |
parent | 97d33be074eb395ee24d0264d202444c7c4cbcd9 (diff) | |
download | roux-fc87bc5ea5845b9cdfccc6c8bdc80b91a7be4141.tar.gz |
use short for classes (so it is signed for sure)
Diffstat (limited to 'all.h')
-rw-r--r-- | all.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/all.h b/all.h index 29e8574..4190162 100644 --- a/all.h +++ b/all.h @@ -306,7 +306,7 @@ enum Jmp { struct OpDesc { char *name; int nmem; - char argcls[2][4]; + short argcls[2][4]; uint sflag:1; /* sets the zero flag */ uint lflag:1; /* leaves flags */ uint cfold:1; /* can fold */ |