diff options
author | Jan-Benedict Glaw <jbglaw@lug-owl.de> | 2013-11-09 20:12:59 +0000 |
---|---|---|
committer | Jan-Benedict Glaw <jbglaw@gcc.gnu.org> | 2013-11-09 20:12:59 +0000 |
commit | 8a6ce562e5299e77a95193463571d5b15afed04d (patch) | |
tree | f5229f1c12f41434e6b8695f68fbc708565d6868 /gcc | |
parent | 6b28e197217e4508709cc49239ea39b7a1ad0a23 (diff) | |
download | gcc-8a6ce562e5299e77a95193463571d5b15afed04d.zip gcc-8a6ce562e5299e77a95193463571d5b15afed04d.tar.gz gcc-8a6ce562e5299e77a95193463571d5b15afed04d.tar.bz2 |
function.c (NAME__MAIN): Move to...
2013-11-09 Jan-Benedict Glaw <jbglaw@lug-owl.de>
* function.c (NAME__MAIN): Move to...
* cfgexpand.c (NAME__MAIN): ...here.
[BR]: http://gcc.gnu.org/ml/gcc-patches/2013-11/msg01003.html
From-SVN: r204620
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/cfgexpand.c | 8 | ||||
-rw-r--r-- | gcc/function.c | 8 |
3 files changed, 13 insertions, 8 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f91e443e..0cad15d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2013-11-09 Jan-Benedict Glaw <jbglaw@lug-owl.de> + + * function.c (NAME__MAIN): Move to... + * cfgexpand.c (NAME__MAIN): ...here. + 2013-11-09 Richard Sandiford <rdsandiford@googlemail.com> * target.def (can_use_doloop_p): New hook. diff --git a/gcc/cfgexpand.c b/gcc/cfgexpand.c index 8faf48a..4e622c0 100644 --- a/gcc/cfgexpand.c +++ b/gcc/cfgexpand.c @@ -61,6 +61,14 @@ along with GCC; see the file COPYING3. If not see #include "recog.h" #include "output.h" +/* Some systems use __main in a way incompatible with its use in gcc, in these + cases use the macros NAME__MAIN to give a quoted symbol and SYMBOL__MAIN to + give the same symbol without quotes for an alternative entry point. You + must define both, or neither. */ +#ifndef NAME__MAIN +#define NAME__MAIN "__main" +#endif + /* This variable holds information helping the rewriting of SSA trees into RTL. */ struct ssaexpand SA; diff --git a/gcc/function.c b/gcc/function.c index ba881c9..a36f152 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -71,14 +71,6 @@ along with GCC; see the file COPYING3. If not see #define STACK_BYTES (STACK_BOUNDARY / BITS_PER_UNIT) -/* Some systems use __main in a way incompatible with its use in gcc, in these - cases use the macros NAME__MAIN to give a quoted symbol and SYMBOL__MAIN to - give the same symbol without quotes for an alternative entry point. You - must define both, or neither. */ -#ifndef NAME__MAIN -#define NAME__MAIN "__main" -#endif - /* Round a value to the lowest integer less than it that is a multiple of the required alignment. Avoid using division in case the value is negative. Assume the alignment is a power of two. */ |