removed outdated mplayer ebuild
[dottout.git] / sys-devel / gcc / files / stubs / gcc-3.4-htb-stub.patch
blob2be61a24013f245f2ce8943a9f8b879a5f5a0c2e
1 --- gcc-3.4.4/gcc/c.opt
2 +++ gcc-3.4.4/gcc/c.opt
3 @@ -426,6 +426,14 @@ fasm
4 C ObjC C++ ObjC++
5 Recognize the \"asm\" keyword
7 +fbounds-checking
8 +C
9 +Generate code to check bounds before indexing arrays
11 +fbc-strings-only
13 +Restrict bounds checking to strings only
15 fbuiltin
16 C ObjC C++ ObjC++
17 Recognize built-in functions
18 --- gcc-3.4.4/gcc/c-opts.c
19 +++ gcc-3.4.4/gcc/c-opts.c
20 @@ -708,6 +708,12 @@ c_common_handle_option (size_t scode, co
21 flag_no_asm = !value;
22 break;
24 + case OPT_fbounds_checking:
25 + case OPT_fbc_strings_only:
26 + if (value)
27 + warning ("htb stub: bounds checking is not supported");
28 + break;
30 case OPT_fbuiltin:
31 flag_no_builtin = !value;
32 break;