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 | 7382664060093649f77d4a0acc36fd63c6dfc4dd (patch) | |
tree | f54cd20cc19da80dbfdb44b9f8496d987bd9a929 /include/opcode/hppa.h | |
parent | fdcf7d43287e77faef1282771bd95a56dd141d1f (diff) | |
download | gdb-7382664060093649f77d4a0acc36fd63c6dfc4dd.zip gdb-7382664060093649f77d4a0acc36fd63c6dfc4dd.tar.gz gdb-7382664060093649f77d4a0acc36fd63c6dfc4dd.tar.bz2 |
* 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 be10047..f454be1 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. |