This is the mail archive of the gdb-cvs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] Include compile-internal.h in gcc-c-plugin.h


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=951d1049fab99c36b2ea827e4eaf954ee1869794

commit 951d1049fab99c36b2ea827e4eaf954ee1869794
Author: Tom Tromey <tom@tromey.com>
Date:   Mon Jan 21 13:42:36 2019 -0700

    Include compile-internal.h in gcc-c-plugin.h
    
    gcc-c-plugin.h refers to some types defined in compile-internal.h.
    This patch changes the former to include the latter.
    
    gdb/ChangeLog
    2019-01-22  Tom Tromey  <tom@tromey.com>
    
    	* compile/gcc-c-plugin.h: Include compile-internal.h.

Diff:
---
 gdb/ChangeLog              | 4 ++++
 gdb/compile/gcc-c-plugin.h | 2 ++
 2 files changed, 6 insertions(+)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index c28d2da..d557d43 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,9 @@
 2019-01-22  Tom Tromey  <tom@tromey.com>
 
+	* compile/gcc-c-plugin.h: Include compile-internal.h.
+
+2019-01-22  Tom Tromey  <tom@tromey.com>
+
 	* stabsread.c (EXTERN): Do not define.
 	(symnum, next_symbol_text_func, processing_gcc_compilation)
 	(within_function, global_sym_chain, global_stabs)
diff --git a/gdb/compile/gcc-c-plugin.h b/gdb/compile/gcc-c-plugin.h
index 882bb04..9ec78e2 100644
--- a/gdb/compile/gcc-c-plugin.h
+++ b/gdb/compile/gcc-c-plugin.h
@@ -17,6 +17,8 @@
    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
+#include "compile-internal.h"
+
 /* A class representing the C plug-in.  */
 
 class gcc_c_plugin


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]