diff options
author | Ian Lance Taylor <iant@google.com> | 2013-07-23 16:14:13 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2013-07-23 16:14:13 +0000 |
commit | 14e5c7e5fdc12c85743de239cf28252e7f0e8c69 (patch) | |
tree | 3e00e79fcbb8d5f2082b182981b537460ea4efb2 /gcc/go/go-backend.c | |
parent | f6820c28939efb0e25cd2eba127645edd901764e (diff) | |
download | gcc-14e5c7e5fdc12c85743de239cf28252e7f0e8c69.zip gcc-14e5c7e5fdc12c85743de239cf28252e7f0e8c69.tar.gz gcc-14e5c7e5fdc12c85743de239cf28252e7f0e8c69.tar.bz2 |
go-backend.c: Don't #include "rtl.h".
* go-backend.c: Don't #include "rtl.h".
(go_imported_unsafe): Don't call init_varasm_once.
* Make-lang.in (go/go-backend.o): Don't depend on $(RTL_H).
From-SVN: r201176
Diffstat (limited to 'gcc/go/go-backend.c')
-rw-r--r-- | gcc/go/go-backend.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/gcc/go/go-backend.c b/gcc/go/go-backend.c index ea47138..c3ffa3b1 100644 --- a/gcc/go/go-backend.c +++ b/gcc/go/go-backend.c @@ -22,7 +22,6 @@ along with GCC; see the file COPYING3. If not see #include "coretypes.h" #include "simple-object.h" #include "tm.h" -#include "rtl.h" #include "tree.h" #include "tm_p.h" #include "intl.h" @@ -91,12 +90,6 @@ go_imported_unsafe (void) { flag_strict_aliasing = false; - /* This is a real hack. init_varasm_once has already grabbed an - alias set, which we don't want when we aren't doing strict - aliasing. We reinitialize to make it do it again. This should - be OK in practice since we haven't really done anything yet. */ - init_varasm_once (); - /* Let the backend know that the options have changed. */ targetm.override_options_after_change (); } |