diff options
author | bernds <bernds@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-02-08 15:36:16 +0000 |
---|---|---|
committer | bernds <bernds@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-02-08 15:36:16 +0000 |
commit | 600695e0a5ce8bae8a3f79b41bcc17ea497527a7 (patch) | |
tree | 4d1efbb39a9d10966c886dd48774317c71f0032a /gcc/java | |
parent | 456d9390514bd986cb08c57d3906d4f883173480 (diff) | |
download | gcc-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/java')
-rw-r--r-- | gcc/java/decl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/java/decl.c b/gcc/java/decl.c index 472b1990f19..93304daea00 100644 --- a/gcc/java/decl.c +++ b/gcc/java/decl.c @@ -565,7 +565,7 @@ java_init_decl_processing (void) global_binding_level = current_binding_level; /* Build common tree nodes, Java has an unsigned char. */ - build_common_tree_nodes (false, false); + build_common_tree_nodes (false); /* ??? Now we continue and override some of the built types again with Java specific types. As the above generated types are |