diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2001-03-05 21:05:49 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2001-03-05 21:05:49 +0000 |
commit | 1b5640cd0a0f600338be9e59df93bb309ef97d9f (patch) | |
tree | d1c5efac314da4adfb2c6b5b1abdbecefbfefd69 /gcc | |
parent | aa5b94de8489f1c17727c69aec521ffa660622a6 (diff) | |
download | gcc-1b5640cd0a0f600338be9e59df93bb309ef97d9f.zip gcc-1b5640cd0a0f600338be9e59df93bb309ef97d9f.tar.gz gcc-1b5640cd0a0f600338be9e59df93bb309ef97d9f.tar.bz2 |
* crtstuff.c: Restore include of auto-host.h.
From-SVN: r40248
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/crtstuff.c | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6946e61..a82ff50 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2001-03-05 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> + + * crtstuff.c: Restore include of auto-host.h. + 2001-03-05 Fergus Henderson <fjh@cs.mu.oz.au> Put main() in a separate file, so that the language diff --git a/gcc/crtstuff.c b/gcc/crtstuff.c index 7651719..c349c71 100644 --- a/gcc/crtstuff.c +++ b/gcc/crtstuff.c @@ -55,6 +55,9 @@ Boston, MA 02111-1307, USA. */ compiled for the target, and hence definitions concerning only the host do not apply. */ +/* We include auto-host.h here to get HAVE_GAS_HIDDEN. This is + supposedly valid even though this is a "target" file. */ +#include "auto-host.h" #include "tconfig.h" #include "tsystem.h" #include "frame.h" |