Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomer Levi <Tomer.Levi@nsc.com>2004-11-05 13:58:22 +0300
committerTomer Levi <Tomer.Levi@nsc.com>2004-11-05 13:58:22 +0300
commitdc7e8c1b9542521cd130af822a98a1b7ea2b6a4a (patch)
treeaa6efb023f02011b20a811186c1eb79822f81754 /include
parent5350aa8b89467fd1dbc4ee6b4da5384c9f101c64 (diff)
2004-11-05 Tomer Levi <Tomer.Levi@nsc.com>
* opcode/crx.h (enum argtype): Rename types, remove unused types.
Diffstat (limited to 'include')
-rw-r--r--include/opcode/crx.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/include/opcode/crx.h b/include/opcode/crx.h
index 033b268b0..ab194f535 100644
--- a/include/opcode/crx.h
+++ b/include/opcode/crx.h
@@ -93,9 +93,8 @@ reg_type;
Argument types :
r - register
c - constant
- d - displacement
- ic - immediate
- icr - index register
+ i - immediate
+ idxr - index register
rbase - register base
s - star ('*')
copr - coprocessor register
@@ -103,8 +102,8 @@ reg_type;
typedef enum
{
- arg_r, arg_c, arg_cr, arg_dc, arg_dcr, arg_sc,
- arg_ic, arg_icr, arg_rbase, arg_copr, arg_copsr,
+ arg_r, arg_c, arg_cr, arg_ic, arg_icr, arg_sc,
+ arg_idxr, arg_rbase, arg_copr, arg_copsr,
/* Not an argument. */
nullargs
}