diff options
author | Eric Christopher <echristo@gcc.gnu.org> | 2003-09-05 00:26:26 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gcc.gnu.org> | 2003-09-05 00:26:26 +0000 |
commit | 3922e7c1ddbd1646799b61ceb7c22255a220ab24 (patch) | |
tree | e62354727530e08d79b9e057816f587d4e233bcd | |
parent | a1d5dca45c721d809c349e097f5629995cf751a1 (diff) | |
download | gcc-3922e7c1ddbd1646799b61ceb7c22255a220ab24.zip gcc-3922e7c1ddbd1646799b61ceb7c22255a220ab24.tar.gz gcc-3922e7c1ddbd1646799b61ceb7c22255a220ab24.tar.bz2 |
t-frv: Fix path for frv-abi.h.
2003-09-04 Eric Christopher <echristo@redhat.com>
* config/frv/t-frv: Fix path for frv-abi.h.
* config/frv/frv-asm.h: Fix string concatenation.
From-SVN: r71099
-rw-r--r-- | gcc/ChangeLog | 9 | ||||
-rw-r--r-- | gcc/config/frv/frv-asm.h | 10 | ||||
-rw-r--r-- | gcc/config/frv/t-frv | 4 |
3 files changed, 14 insertions, 9 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7d2b73a..9b8ec11 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-09-04 Eric Christopher <echristo@redhat.com> + + * config/frv/t-frv: Fix path for frv-abi.h. + * config/frv/frv-asm.h: Fix string concatenation. + 2003-09-04 DJ Delorie <dj@redhat.com> * builtins.c (apply_args_size): Guard against a NULL cfun. @@ -12,7 +17,7 @@ * configure: Regenerate. * config.in: Likewise. * config/i386/i386.c: Rename CMOV_SUN_AS_SYNTAX to - HAVE_AS_IX86_CMOV_SUN_SYNTAX. + HAVE_AS_IX86_CMOV_SUN_SYNTAX. * config/i386/sol2.h (CMOV_SUN_AS_SYNTAX): Remove. Fixes PR target/12101. @@ -20,7 +25,7 @@ * c-common.c (fname_as_string): Use lang_hooks.decl_printable_name with verbosity 0, instead of DECL_NAME, for human-readable string. - + 2003-09-04 Eric Christopher <echristo@redhat.com> * targhooks.c (default_return_in_memory): Allow diff --git a/gcc/config/frv/frv-asm.h b/gcc/config/frv/frv-asm.h index e8447a6..4681427 100644 --- a/gcc/config/frv/frv-asm.h +++ b/gcc/config/frv/frv-asm.h @@ -1,19 +1,19 @@ /* Assembler Support. Copyright (C) 2000 Free Software Foundation, Inc. Contributed by Red Hat, Inc. - + This file is part of GNU CC. - + GNU CC 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. - + GNU CC is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY ; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 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, 59 Temple Place - Suite 330, @@ -23,7 +23,7 @@ P2(INSN): Emit INSN.P on the FR500 and above, otherwise emit plain INSN. */ #ifdef __FRV_VLIW__ #ifdef __STDC__ -#define P(A) A##.p +#define P(A) A.p #else #define P(A) A/**/.p #endif diff --git a/gcc/config/frv/t-frv b/gcc/config/frv/t-frv index eec05b1..a9130ff 100644 --- a/gcc/config/frv/t-frv +++ b/gcc/config/frv/t-frv @@ -19,11 +19,11 @@ TARGET_LIBGCC2_CFLAGS = fp-bit.c: $(srcdir)/config/fp-bit.c echo '#define FLOAT' > fp-bit.c - echo '#include "frv/frv-abi.h"' >> fp-bit.c + echo '#include "config/frv/frv-abi.h"' >> fp-bit.c cat $(srcdir)/config/fp-bit.c >> fp-bit.c dp-bit.c: $(srcdir)/config/fp-bit.c - echo '#include "frv/frv-abi.h"' > dp-bit.c + echo '#include "config/frv/frv-abi.h"' > dp-bit.c cat $(srcdir)/config/fp-bit.c >> dp-bit.c cmovh.c: $(srcdir)/config/frv/cmovh.c |