summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2006-10-06 22:25:18 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2006-10-06 22:25:18 +0000
commitf34f86b4577f08a4f6d425bf8a33abbdf2dbb1b5 (patch)
tree35ca4447cda9abda5ad6f00d09a46f4b84a4438e
parente985eb3bb179c65552c932aa475f5cecf3ee9b9e (diff)
Disable stack protector in OVERRIDE_OPTIONS regardless of the commandline
settings for now.
-rw-r--r--gnu/usr.bin/gcc/gcc/config/sh/sh.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/usr.bin/gcc/gcc/config/sh/sh.h b/gnu/usr.bin/gcc/gcc/config/sh/sh.h
index e8310502d34..bd0e60e6282 100644
--- a/gnu/usr.bin/gcc/gcc/config/sh/sh.h
+++ b/gnu/usr.bin/gcc/gcc/config/sh/sh.h
@@ -405,6 +405,9 @@ extern int assembler_dialect;
do { \
int regno; \
\
+ /* disable stack protection for now */ \
+ flag_propolice_protection = 0; \
+ \
sh_cpu = CPU_SH1; \
assembler_dialect = 0; \
if (TARGET_SH2) \