* frv.cpu: Add IDOC attribute.
This commit is contained in:
parent
a191ea8dac
commit
5b5b78dacb
2 changed files with 22 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2003-06-10 Doug Evans <dje@sebabeach.org>
|
||||||
|
|
||||||
|
* frv.cpu: Add IDOC attribute.
|
||||||
|
|
||||||
2003-06-06 Andrew Cagney <cagney@redhat.com>
|
2003-06-06 Andrew Cagney <cagney@redhat.com>
|
||||||
|
|
||||||
Contributed by Red Hat.
|
Contributed by Red Hat.
|
||||||
|
|
18
cpu/frv.cpu
18
cpu/frv.cpu
|
@ -1016,6 +1016,24 @@
|
||||||
(comment "placeholder attribute")
|
(comment "placeholder attribute")
|
||||||
(attrs META) ; do not define in any generated file for now
|
(attrs META) ; do not define in any generated file for now
|
||||||
)
|
)
|
||||||
|
|
||||||
|
; IDOC attribute for instruction documentation.
|
||||||
|
|
||||||
|
(define-attr
|
||||||
|
(for insn)
|
||||||
|
(type enum)
|
||||||
|
(name IDOC)
|
||||||
|
(comment "insn kind for documentation")
|
||||||
|
(attrs META)
|
||||||
|
(values
|
||||||
|
(MEM - () "Memory")
|
||||||
|
(ALU - () "ALU")
|
||||||
|
(FPU - () "FPU")
|
||||||
|
(BR - () "Branch")
|
||||||
|
(PRIV - () "Priviledged")
|
||||||
|
(MISC - () "Miscellaneous")
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
; Instruction fields.
|
; Instruction fields.
|
||||||
;
|
;
|
||||||
|
|
Loading…
Reference in a new issue