]> sourceware.org Git - cgen.git/commitdiff
* doc/porting.texi (Doing a GAS port): Replace `cgen_opcode_open'
authorBen Elliston <bje@air.not.au>
Wed, 9 May 2001 01:34:03 +0000 (01:34 +0000)
committerBen Elliston <bje@air.not.au>
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.

ChangeLog
doc/porting.texi
doc/rtl.texi

index 13a02223da7241cb0df7e692525dbf8e2f4a6faf..4f8a92c6b5bbe886e1bd9db8d336a05dd3fc2bf8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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 cb595c2bc9ce3f1184807092cf03343167453a48..1b6045d4b60626ff379b14c8ff6a5540f7c61555 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 6a9920f4fb1308fafbca7490209a1754d390d9cb..183a273f17fbcdcf73e6b99968f697d3886a8962 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.
This page took 0.038502 seconds and 5 git commands to generate.