[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
rpms/gcc/devel gcc4-stack-protector.patch,1.1,1.2
- From: fedora-cvs-commits redhat com
- To: fedora-cvs-commits redhat com
- Subject: rpms/gcc/devel gcc4-stack-protector.patch,1.1,1.2
- Date: Fri, 8 Jul 2005 17:26:43 -0400
Author: jakub
Update of /cvs/dist/rpms/gcc/devel
In directory cvs.devel.redhat.com:/tmp/cvs-serv4109
Modified Files:
gcc4-stack-protector.patch
Log Message:
4.0.1-1
gcc4-stack-protector.patch:
Makefile.in | 10 +-
c-cppbuiltin.c | 6 +
cfgexpand.c | 217 +++++++++++++++++++++++++++++++++++++++++++++++-
common.opt | 12 ++
config.in | 6 +
config/i386/i386.c | 25 +++++
config/i386/i386.h | 1
config/i386/i386.md | 184 ++++++++++++++++++++++++++++++----------
config/i386/linux.h | 5 +
config/i386/linux64.h | 6 +
config/rs6000/darwin.h | 14 +--
config/rs6000/linux.h | 5 +
config/rs6000/linux64.h | 6 +
config/rs6000/rs6000.c | 162 +++++++++++++++++++++++++++++++----
config/rs6000/rs6000.h | 93 +++++++++-----------
config/rs6000/rs6000.md | 82 ++++++++++++++++++
config/rs6000/sysv4.h | 5 -
config/s390/s390.c | 24 +++--
config/s390/s390.h | 10 +-
config/sparc/linux.h | 5 +
config/sparc/linux64.h | 6 +
config/sparc/sparc.c | 10 +-
config/sparc/sparc.h | 1
config/sparc/sparc.md | 93 ++++++++++++++++++++
configure | 48 ++++++++++
configure.ac | 39 ++++++++
doc/md.texi | 34 ++++++-
doc/tm.texi | 26 +++++
function.c | 104 +++++++++++++++++++++++
function.h | 4
gcc.c | 12 ++
params.def | 5 +
regrename.c | 6 +
target-def.h | 5 +
target.h | 11 ++
targhooks.c | 91 ++++++++++++++++++++
targhooks.h | 4
toplev.c | 10 ++
tree.h | 1
39 files changed, 1232 insertions(+), 156 deletions(-)
Index: gcc4-stack-protector.patch
===================================================================
RCS file: /cvs/dist/rpms/gcc/devel/gcc4-stack-protector.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- gcc4-stack-protector.patch 8 Jul 2005 21:09:22 -0000 1.1
+++ gcc4-stack-protector.patch 8 Jul 2005 21:26:40 -0000 1.2
@@ -1289,7 +1289,7 @@
+static tree
+rs6000_stack_protect_fail (void)
+{
-+ return (DEFAULT_ABI == ABI_V4 && TARGET_SECURE_PLT && flag_pic)
++ return (DEFAULT_ABI == ABI_V4 && 0 /* TARGET_SECURE_PLT */ && flag_pic)
+ ? default_hidden_stack_protect_fail ()
+ : default_external_stack_protect_fail ();
+}
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]