diff options
author | Anthony Green <green@redhat.com> | 2001-03-18 20:52:02 +0000 |
---|---|---|
committer | Anthony Green <green@gcc.gnu.org> | 2001-03-18 20:52:02 +0000 |
commit | 488744fa77cc7937f92c4b1de3e7437c878703cb (patch) | |
tree | a4bad64b3eadb5e1837a83a2e050a992555eac14 | |
parent | 1f618c5855b7e4a92c55dd2387e35f9f0b7ba3fc (diff) | |
download | gcc-488744fa77cc7937f92c4b1de3e7437c878703cb.zip gcc-488744fa77cc7937f92c4b1de3e7437c878703cb.tar.gz gcc-488744fa77cc7937f92c4b1de3e7437c878703cb.tar.bz2 |
> * config/pj/lib1funcs.S: Fix broken comment.
> * config/pj/lib1funcs.S: Fix broken comment.
> * config/pj/pj.h (LOCAL_LABEL_PREFIX): Prefix internal
> labels with '.'.
From-SVN: r40602
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/pj/lib1funcs.S | 18 | ||||
-rw-r--r-- | gcc/config/pj/pj.h | 2 |
3 files changed, 16 insertions, 10 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 50921f0..255545e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2001-03-17 Anthony Green <green@redhat.com> + + * config/pj/lib1funcs.S: Fix broken comment. + * config/pj/pj.h (LOCAL_LABEL_PREFIX): Prefix internal + labels with '.'. + 2001-03-18 Joseph S. Myers <jsm28@cam.ac.uk> * gcc.texi: Remove obsolete information relating to build and diff --git a/gcc/config/pj/lib1funcs.S b/gcc/config/pj/lib1funcs.S index 004d73a..02390bc 100644 --- a/gcc/config/pj/lib1funcs.S +++ b/gcc/config/pj/lib1funcs.S @@ -1,19 +1,19 @@ ! lib1funcs.S for picoJava. -! Copyright (C) 2000 Free Software Foundation, Inc. +! Copyright (C) 2000, 2001 Free Software Foundation, Inc. ! ! This file is free software; you can redistribute it and/or modify it ! under the terms of the GNU General Public License as published by the ! Free Software Foundation; either version 2, or (at your option) any ! later version. ! -| In addition to the permissions in the GNU General Public License, the -| Free Software Foundation gives you unlimited permission to link the -| compiled version of this file into combinations with other programs, -| and to distribute those combinations without any restriction coming -| from the use of this file. (The General Public License restrictions -| do apply in other respects; for example, they cover modification of -| the file, and distribution when not linked into a combine -| executable.) +! In addition to the permissions in the GNU General Public License, the +! Free Software Foundation gives you unlimited permission to link the +! compiled version of this file into combinations with other programs, +! and to distribute those combinations without any restriction coming +! from the use of this file. (The General Public License restrictions +! do apply in other respects; for example, they cover modification of +! the file, and distribution when not linked into a combine +! executable.) ! ! This file is distributed in the hope that it will be useful, but ! WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/gcc/config/pj/pj.h b/gcc/config/pj/pj.h index 39f8d79..73ff2c2 100644 --- a/gcc/config/pj/pj.h +++ b/gcc/config/pj/pj.h @@ -1159,7 +1159,7 @@ do { fputs (current_function_varargs || current_function_stdarg \ /* The prefix to add to an internally generated label. */ -#define LOCAL_LABEL_PREFIX "" +#define LOCAL_LABEL_PREFIX "." /* Make an internal label into a string. */ #define ASM_GENERATE_INTERNAL_LABEL(STRING, PREFIX, NUM) \ |