aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Merrill <jason@redhat.com>2021-06-24 10:37:42 -0400
committerJason Merrill <jason@redhat.com>2021-06-26 00:17:43 -0400
commit5b1ce655b25040048861af6c0264cb667b66fcd7 (patch)
treef9d3bc4280302a5fadb2245f82895550e64a4aea
parent2168bfb81448ae1bfa4351760a23d4ec051c2a00 (diff)
downloadgcc-5b1ce655b25040048861af6c0264cb667b66fcd7.zip
gcc-5b1ce655b25040048861af6c0264cb667b66fcd7.tar.gz
gcc-5b1ce655b25040048861af6c0264cb667b66fcd7.tar.bz2
except: remove dwarf2out.h dependency
When thinking about the CTF debug patchset dwarf2out.h split, I noticed that except.c only needs macros from dwarf2.h, nothing from dwarf2out.h. gcc/ChangeLog: * except.c: #include "dwarf2.h" instead of "dwarf2out.h".
-rw-r--r--gcc/except.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/except.c b/gcc/except.c
index d481a5e..8e905a3 100644
--- a/gcc/except.c
+++ b/gcc/except.c
@@ -136,7 +136,7 @@ along with GCC; see the file COPYING3. If not see
#include "except.h"
#include "output.h"
#include "dwarf2asm.h"
-#include "dwarf2out.h"
+#include "dwarf2.h"
#include "common/common-target.h"
#include "langhooks.h"
#include "cfgrtl.h"