summaryrefslogtreecommitdiff
path: root/gcc/go/go-lang.c
diff options
context:
space:
mode:
authorbernds <bernds@138bc75d-0d04-0410-961f-82ee72b054a4>2016-02-08 15:36:16 +0000
committerbernds <bernds@138bc75d-0d04-0410-961f-82ee72b054a4>2016-02-08 15:36:16 +0000
commit600695e0a5ce8bae8a3f79b41bcc17ea497527a7 (patch)
tree4d1efbb39a9d10966c886dd48774317c71f0032a /gcc/go/go-lang.c
parent456d9390514bd986cb08c57d3906d4f883173480 (diff)
downloadgcc-600695e0a5ce8bae8a3f79b41bcc17ea497527a7.tar.gz
Remove -fshort-double
PR target/60410 * tree.c (build_common_tree_nodes): Remove short_double argument. All callers changed. * tree.h (build_common_tree_nodes): Adjust declaration. * doc/invoke.texi (-fshort-double): Remove documentation. * config/mips/t-img-elf (MULTILIB_OPTIONS, MULTILIB_DIRNAMES, MULTILIB_EXCEPTIONS): Remove -fshort-double variant. * lto-wrapper.c (merge_and_complain, append_compiler_options, append_linker_options): Don't handle OPT_fshort_double. c-family/ PR target/60410 * c.opt (fshort-double): Remove. testsuite/ PR target/60410 * gcc.dg/lto/pr55113_0.c: Remove test. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@233218 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/go/go-lang.c')
-rw-r--r--gcc/go/go-lang.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/go/go-lang.c b/gcc/go/go-lang.c
index 9f21424af6d..9c95c8e0bb1 100644
--- a/gcc/go/go-lang.c
+++ b/gcc/go/go-lang.c
@@ -89,7 +89,7 @@ static const char *go_relative_import_path = NULL;
static bool
go_langhook_init (void)
{
- build_common_tree_nodes (false, false);
+ build_common_tree_nodes (false);
/* I don't know why this has to be done explicitly. */
void_list_node = build_tree_list (NULL_TREE, void_type_node);