diff options
author | Jeff Law <law@redhat.com> | 1999-06-30 23:20:56 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1999-06-30 23:20:56 +0000 |
commit | ca7cd5dc645706b78b282cc268e0e3d64663d132 (patch) | |
tree | 0f2a4be65a21318f01e05a2916caff000cb1d29b /include/opcode/hppa.h | |
parent | ccc329f000e031381dcc765812fa6b55dbcd165c (diff) | |
download | cygnal-ca7cd5dc645706b78b282cc268e0e3d64663d132.tar.gz cygnal-ca7cd5dc645706b78b282cc268e0e3d64663d132.tar.bz2 cygnal-ca7cd5dc645706b78b282cc268e0e3d64663d132.zip |
* hppa.h (struct pa_opcode): Add new field "flags".
(FLAGS_STRICT): Define.
Diffstat (limited to 'include/opcode/hppa.h')
-rw-r--r-- | include/opcode/hppa.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/opcode/hppa.h b/include/opcode/hppa.h index be1004797..f454be11b 100644 --- a/include/opcode/hppa.h +++ b/include/opcode/hppa.h @@ -43,8 +43,12 @@ struct pa_opcode unsigned long int mask; /* ... in these bits. */ char *args; enum pa_arch arch; + char flags; }; +/* Enable/disable strict syntax checking. Not currently used, but will + be necessary for PA2.0 support in the future. */ +#define FLAG_STRICT 0x1 /* All hppa opcodes are 32 bits. |