summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-03-03 04:31:49 +0000
committerMike Frysinger <vapier@gentoo.org>2006-03-03 04:31:49 +0000
commit6cf05bbb3383324270374bd552b7aa4798722de8 (patch)
treeefb9f111cc03f990cfa49e44187e5956c1ad6b51 /sys-devel/gcc/files
parentQuick fix to actually install docs under build/docs/. (diff)
downloadgentoo-2-6cf05bbb3383324270374bd552b7aa4798722de8.tar.gz
gentoo-2-6cf05bbb3383324270374bd552b7aa4798722de8.tar.bz2
gentoo-2-6cf05bbb3383324270374bd552b7aa4798722de8.zip
on second thought, lets not bother with HTB stubs since we have mudflap now
(Portage version: 2.1_pre5-r2)
Diffstat (limited to 'sys-devel/gcc/files')
-rw-r--r--sys-devel/gcc/files/stubs/gcc-4.1-htb-stub.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/sys-devel/gcc/files/stubs/gcc-4.1-htb-stub.patch b/sys-devel/gcc/files/stubs/gcc-4.1-htb-stub.patch
deleted file mode 100644
index 65c5b525c9b3..000000000000
--- a/sys-devel/gcc/files/stubs/gcc-4.1-htb-stub.patch
+++ /dev/null
@@ -1,32 +0,0 @@
---- gcc-4.1.0/gcc/c.opt
-+++ gcc-4.1.0/gcc/c.opt
-@@ -446,6 +446,14 @@
- C ObjC C++ ObjC++
- Recognize the \"asm\" keyword
-
-+fbounds-checking
-+C
-+Generate code to check bounds before indexing arrays
-+
-+fbc-strings-only
-+C
-+Restrict bounds checking to strings only
-+
- fbuiltin
- C ObjC C++ ObjC++
- Recognize built-in functions
---- gcc-4.1.0/gcc/c-opts.c
-+++ gcc-4.1.0/gcc/c-opts.c
-@@ -584,6 +584,12 @@
- flag_no_asm = !value;
- break;
-
-+ case OPT_fbc_strings_only:
-+ case OPT_fbounds_checking:
-+ if (value)
-+ warning ("htb stub: bounds checking is not supported");
-+ break;
-+
- case OPT_fbuiltin:
- flag_no_builtin = !value;
- break;