diff options
author | Simon Marlow <marlowsd@gmail.com> | 2009-09-18 13:32:04 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2009-09-18 13:32:04 +0000 |
commit | 656e9d6b1db053c88ba1518b6095060347e09418 (patch) | |
tree | d49e31cdb0bdfd918fbc4dce77f37c2839490a03 /includes/rts/Bytecodes.h | |
parent | ba67234542412c2ca6656dbeadb7d225bc94d4b2 (diff) | |
download | haskell-656e9d6b1db053c88ba1518b6095060347e09418.tar.gz |
implement case-on-Word in the byte code generator/interpreter (#2881)
Diffstat (limited to 'includes/rts/Bytecodes.h')
-rw-r--r-- | includes/rts/Bytecodes.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/includes/rts/Bytecodes.h b/includes/rts/Bytecodes.h index 8764b180df..5e1fc287cb 100644 --- a/includes/rts/Bytecodes.h +++ b/includes/rts/Bytecodes.h @@ -77,6 +77,8 @@ #define bci_RETURN_L 52 #define bci_RETURN_V 53 #define bci_BRK_FUN 54 +#define bci_TESTLT_W 55 +#define bci_TESTEQ_W 56 /* If you need to go past 255 then you will run into the flags */ /* If you need to go below 0x0100 then you will run into the instructions */ |