diff options
author | echristo <echristo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-09-05 00:26:26 +0000 |
---|---|---|
committer | echristo <echristo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-09-05 00:26:26 +0000 |
commit | 2650c84d622d494748be52786c23d5628529338b (patch) | |
tree | e62354727530e08d79b9e057816f587d4e233bcd /gcc/config/frv | |
parent | 7baae1da01e05d99b3c277335754e3aa94452924 (diff) | |
download | gcc-2650c84d622d494748be52786c23d5628529338b.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@71099 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/frv')
-rw-r--r-- | gcc/config/frv/frv-asm.h | 10 | ||||
-rw-r--r-- | gcc/config/frv/t-frv | 4 |
2 files changed, 7 insertions, 7 deletions
diff --git a/gcc/config/frv/frv-asm.h b/gcc/config/frv/frv-asm.h index e8447a6093d..46814278522 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 eec05b1ea81..a9130ff0604 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 |