diff options
author | Ian Lance Taylor <iant@google.com> | 2011-04-19 23:26:19 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2011-04-19 23:26:19 +0000 |
commit | 8f888468542a71fd6324f2e6668e7f968000f641 (patch) | |
tree | 06f3a171c081989af4bcc813c20e060dca96fa6d /gcc/go/go-system.h | |
parent | 0c6caf5ab0a166cc87d46ee4f612acb047a12e5f (diff) | |
download | gcc-8f888468542a71fd6324f2e6668e7f968000f641.zip gcc-8f888468542a71fd6324f2e6668e7f968000f641.tar.gz gcc-8f888468542a71fd6324f2e6668e7f968000f641.tar.bz2 |
statement.cc no longer includes gcc headers.
* go-system.h: Include "intl.h".
* Make-lang.in (GO_SYSTEM_H): Add intl.h.
(go/statements.o): Remove dependencies on intl.h $(TREE_H)
$(GIMPLE_H) convert.h tree-iterator.h $(TREE_FLOW_H) $(REAL_H).
From-SVN: r172743
Diffstat (limited to 'gcc/go/go-system.h')
-rw-r--r-- | gcc/go/go-system.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/go/go-system.h b/gcc/go/go-system.h index e56952d..75f3925 100644 --- a/gcc/go/go-system.h +++ b/gcc/go/go-system.h @@ -1,5 +1,5 @@ // go-system.h -- Go frontend inclusion of gcc header files -*- C++ -*- -// Copyright (C) 2009, 2010 Free Software Foundation, Inc. +// Copyright (C) 2009, 2010, 2011 Free Software Foundation, Inc. // This file is part of GCC. @@ -145,6 +145,7 @@ extern "C" #include "diagnostic-core.h" /* For error_at and friends. */ #include "input.h" /* For source_location. */ +#include "intl.h" /* For _(). */ #ifndef ENABLE_BUILD_WITH_CXX } // End extern "C" |