with `cgen_cpu_open'; documentation had become out of date.
* doc/rtl.texi (Instruction operands): Likewise.
+2001-05-09 Ben Elliston <bje@redhat.com>
+
+ * doc/porting.texi (Doing a GAS port): Replace `cgen_opcode_open'
+ with `cgen_cpu_open'; documentation had become out of date.
+ * doc/rtl.texi (Instruction operands): Likewise.
+
2001-05-07 Frank Ch. Eigler <fche@redhat.com>
* iformat.scm (compute-insn-base-mask-length): Rewrite to tolerate
@example
/* Set the machine number and endianness. */
gas_cgen_opcode_desc =
- <arch>_cgen_opcode_open (CGEN_CPU_OPEN_MACHS,
- 0 /* mach number */,
- CGEN_CPU_OPEN_ENDIAN,
- (target_big_endian
- ? CGEN_ENDIAN_BIG
- : CGEN_ENDIAN_LITTLE),
- CGEN_CPU_OPEN_END);
+ <arch>_cgen_cpu_open (CGEN_CPU_OPEN_MACHS,
+ 0 /* mach number */,
+ CGEN_CPU_OPEN_ENDIAN,
+ (target_big_endian
+ ? CGEN_ENDIAN_BIG
+ : CGEN_ENDIAN_LITTLE),
+ CGEN_CPU_OPEN_END);
<arch>_cgen_init_asm (gas_cgen_opcode_desc);
unsigned long *valuep);
@end example
-@code{cd} is the result of @code{<arch>_cgen_opcode_open}.
+@code{cd} is the result of @code{<arch>_cgen_cpu_open}.
@code{strp} is a pointer to a pointer to the assembler and is updated by
the function.
@c FIXME
int length);
@end example
-@samp{cd} is the result of @code{<arch>_cgen_opcode_open}.
+@samp{cd} is the result of @code{<arch>_cgen_cpu_open}.
@samp{ptr} is the `info' argument to print_insn_<arch>.
@samp{value} is the value to be printed.
@samp{attrs} is the set of boolean attributes.