diff options
author | uweigand <uweigand@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-04-01 17:16:47 +0000 |
---|---|---|
committer | uweigand <uweigand@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-04-01 17:16:47 +0000 |
commit | 2ee49f28c3be2b3826049e40af96b899fec44eca (patch) | |
tree | 4a439e3559c14aec9d45dbba0788a98ee7257030 | |
parent | 440fcad185391d86ec6ded74773a5a01a6b2e201 (diff) | |
download | gcc-2ee49f28c3be2b3826049e40af96b899fec44eca.tar.gz |
* config/spu/t-spu-elf (dp-bit.c): Use > instead of >>.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@171837 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/spu/t-spu-elf | 5 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5f89ac407e2..c720f82d558 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2011-04-01 Ulrich Weigand <Ulrich.Weigand@de.ibm.com> + + * config/spu/t-spu-elf (dp-bit.c): Use > instead of >>. + 2011-04-01 Kai Tietz <ktietz@redhat.com> * config.gcc (*-*-mingw*): Allow as option the diff --git a/gcc/config/spu/t-spu-elf b/gcc/config/spu/t-spu-elf index a131f64883b..5189f28584d 100644 --- a/gcc/config/spu/t-spu-elf +++ b/gcc/config/spu/t-spu-elf @@ -1,4 +1,5 @@ -# Copyright (C) 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. +# Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 +# 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 @@ -55,7 +56,7 @@ FPBIT = fp-bit.c DPBIT = dp-bit.c dp-bit.c: $(srcdir)/config/fp-bit.c $(srcdir)/config/spu/t-spu-elf - cat $(srcdir)/config/fp-bit.c >> dp-bit.c + cat $(srcdir)/config/fp-bit.c > dp-bit.c fp-bit.c: $(srcdir)/config/fp-bit.c $(srcdir)/config/spu/t-spu-elf echo '#define FLOAT' > fp-bit.c |