OSDN Git Service

* doc/porting.texi (Doing a GAS port): Replace `cgen_opcode_open'
authorbje <bje>
Wed, 9 May 2001 01:34:03 +0000 (01:34 +0000)
committerbje <bje>
Wed, 9 May 2001 01:34:03 +0000 (01:34 +0000)
with `cgen_cpu_open'; documentation had become out of date.
* doc/rtl.texi (Instruction operands): Likewise.

cgen/ChangeLog
cgen/doc/porting.texi
cgen/doc/rtl.texi

index 13a0222..4f8a92c 100644 (file)
@@ -1,3 +1,9 @@
+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
index cb595c2..1b6045d 100644 (file)
@@ -587,13 +587,13 @@ want of course):
 @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);
 
index 6a9920f..183a273 100644 (file)
@@ -1566,7 +1566,7 @@ parse_foo (CGEN_CPU_DESC cd,
           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
@@ -1590,7 +1590,7 @@ void print_foo (CGEN_CPU_DESC cd,
                 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.