diff options
Diffstat (limited to 'contrib/gcc/config/i386/gas.h')
-rw-r--r-- | contrib/gcc/config/i386/gas.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/contrib/gcc/config/i386/gas.h b/contrib/gcc/config/i386/gas.h index 78195b97a8549..8be55fbc809b5 100644 --- a/contrib/gcc/config/i386/gas.h +++ b/contrib/gcc/config/i386/gas.h @@ -1,5 +1,6 @@ /* Definitions for Intel 386 using GAS. - Copyright (C) 1988, 1993, 1994, 1996, 2002 Free Software Foundation, Inc. + Copyright (C) 1988, 1993, 1994, 1996, 2002, 2004 + Free Software Foundation, Inc. This file is part of GCC. @@ -15,8 +16,8 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GCC; see the file COPYING. If not, write to -the Free Software Foundation, 59 Temple Place - Suite 330, -Boston, MA 02111-1307, USA. */ +the Free Software Foundation, 51 Franklin Street, Fifth Floor, +Boston, MA 02110-1301, USA. */ /* Note that i386/seq-gas.h is a GAS configuration that does not use this file. */ @@ -49,10 +50,6 @@ Boston, MA 02111-1307, USA. */ #define ASM_OUTPUT_IDENT(FILE, NAME) fprintf (FILE, "\t.ident \"%s\"\n", NAME); -/* Implicit library calls should use memcpy, not bcopy, etc. */ - -#define TARGET_MEM_FUNCTIONS - /* In the past there was confusion as to what the argument to .align was in GAS. For the last several years the rule has been this: for a.out file formats that argument is LOG, and for all other file formats the @@ -121,4 +118,8 @@ Boston, MA 02111-1307, USA. */ /* Print opcodes the way that GAS expects them. */ #define GAS_MNEMONICS 1 +/* The comment-starter string as GAS expects it. */ +#undef ASM_COMMENT_START +#define ASM_COMMENT_START "#" + #define TARGET_ASM_FILE_START_FILE_DIRECTIVE true |