mirror of git://gcc.gnu.org/git/gcc.git
Document compatibility with earlier ProPolice implementation.
* c-cppbuiltin.c (c_cpp_builtins): Add comment for flag_stack_protect macros. From-SVN: r103058
This commit is contained in:
parent
0aca9021cd
commit
0ffb94cd68
|
|
@ -6,6 +6,9 @@
|
||||||
(-Wvariadic-macros): Alphabetize.
|
(-Wvariadic-macros): Alphabetize.
|
||||||
(-fsched-stalled-insns-dep): Add missing 'f'.
|
(-fsched-stalled-insns-dep): Add missing 'f'.
|
||||||
|
|
||||||
|
* c-cppbuiltin.c (c_cpp_builtins): Add comment for flag_stack_protect
|
||||||
|
macros.
|
||||||
|
|
||||||
2005-08-13 David Edelsohn <edelsohn@gnu.org>
|
2005-08-13 David Edelsohn <edelsohn@gnu.org>
|
||||||
|
|
||||||
* config/rs6000/rs6000.h (EXTRA_CONSTRAINT): Add 'a' for indexed
|
* config/rs6000/rs6000.h (EXTRA_CONSTRAINT): Add 'a' for indexed
|
||||||
|
|
|
||||||
|
|
@ -440,7 +440,9 @@ c_cpp_builtins (cpp_reader *pfile)
|
||||||
if (targetm.handle_pragma_extern_prefix)
|
if (targetm.handle_pragma_extern_prefix)
|
||||||
cpp_define (pfile, "__PRAGMA_EXTERN_PREFIX");
|
cpp_define (pfile, "__PRAGMA_EXTERN_PREFIX");
|
||||||
|
|
||||||
/* Make the choice of the stack protector runtime visible to source code. */
|
/* Make the choice of the stack protector runtime visible to source code.
|
||||||
|
The macro names and values here were chosen for compatibility with an
|
||||||
|
earlier implementation, i.e. ProPolice. */
|
||||||
if (flag_stack_protect == 2)
|
if (flag_stack_protect == 2)
|
||||||
cpp_define (pfile, "__SSP_ALL__=2");
|
cpp_define (pfile, "__SSP_ALL__=2");
|
||||||
else if (flag_stack_protect == 1)
|
else if (flag_stack_protect == 1)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue