OSDN Git Service

(__objc_register_instance_methods_to_class): New function.
[pf3gnuchains/gcc-fork.git] / gcc / genflags.c
index cd784e2..f8b3983 100644 (file)
@@ -18,7 +18,8 @@ GNU General Public License for more details.
 
 You should have received a copy of the GNU General Public License
 along with GNU CC; see the file COPYING.  If not, write to
-the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
+the Free Software Foundation, 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.  */
 
 
 #include <stdio.h>
@@ -49,6 +50,7 @@ static struct obstack call_obstack, normal_obstack;
 static int max_id_len;
 
 /* Count the number of match_operand's found.  */
+
 static int
 num_operands (x)
      rtx x;
@@ -86,6 +88,7 @@ num_operands (x)
 }
 
 /* Print out prototype information for a function.  */
+
 static void
 gen_proto (insn)
      rtx insn;
@@ -107,6 +110,7 @@ gen_proto (insn)
 }
 
 /* Print out a function declaration without a prototype.  */
+
 static void
 gen_nonproto (insn)
      rtx insn;
@@ -257,7 +261,7 @@ from the machine description file `md'.  */\n\n");
     }
 
   /* Print out the prototypes now.  */
-  dummy = (rtx)0;
+  dummy = (rtx) 0;
   obstack_grow (&call_obstack, &dummy, sizeof (rtx));
   call_insns = (rtx *) obstack_finish (&call_obstack);