From: Jason Merrill Date: Thu, 24 Jun 2021 14:37:42 +0000 (-0400) Subject: except: remove dwarf2out.h dependency X-Git-Tag: basepoints/gcc-13~6485 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5b1ce655b25040048861af6c0264cb667b66fcd7;p=thirdparty%2Fgcc.git 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". --- diff --git a/gcc/except.c b/gcc/except.c index d481a5ecb4e0..8e905a30939d 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"