From 5b1ce655b25040048861af6c0264cb667b66fcd7 Mon Sep 17 00:00:00 2001 From: Jason Merrill Date: Thu, 24 Jun 2021 10:37:42 -0400 Subject: [PATCH] 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". --- gcc/except.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" -- 2.7.4