diff options
author | Florian Weimer <fweimer@redhat.com> | 2016-10-24 20:25:09 +0200 |
---|---|---|
committer | Florian Weimer <fw@gcc.gnu.org> | 2016-10-24 20:25:09 +0200 |
commit | 331075711a0f19224c11cc880c695fd52723b881 (patch) | |
tree | 88ee7e10b66145d20f9294a9aea0d910255a03d7 | |
parent | f834806177042ee269333855dee99fda84bc7c26 (diff) | |
download | gcc-331075711a0f19224c11cc880c695fd52723b881.zip gcc-331075711a0f19224c11cc880c695fd52723b881.tar.gz gcc-331075711a0f19224c11cc880c695fd52723b881.tar.bz2 |
PR libgcc/78064: Add missing include directive to unwind-c.c
PR libgcc/78064
* unwind-c.c: Include auto-target.h.
From-SVN: r241491
-rw-r--r-- | libgcc/ChangeLog | 5 | ||||
-rw-r--r-- | libgcc/unwind-c.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog index 4010e97..116c87b 100644 --- a/libgcc/ChangeLog +++ b/libgcc/ChangeLog @@ -1,3 +1,8 @@ +2016-10-24 Florian Weimer <fweimer@redhat.com> + + PR libgcc/78064 + * unwind-c.c: Include auto-target.h. + 2016-10-19 John David Anglin <danglin@gcc.gnu.org> * config/pa/pa64-hpux-lib.h: New file. diff --git a/libgcc/unwind-c.c b/libgcc/unwind-c.c index 5835aad..b05f376 100644 --- a/libgcc/unwind-c.c +++ b/libgcc/unwind-c.c @@ -26,6 +26,7 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see #include "tconfig.h" #include "tsystem.h" +#include "auto-target.h" #include "unwind.h" #define NO_SIZE_OF_ENCODED_VALUE #include "unwind-pe.h" |