aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/gcc-interface/misc.c
diff options
context:
space:
mode:
authorBernd Schmidt <bernds@redhat.com>2016-02-08 15:36:16 +0000
committerBernd Schmidt <bernds@gcc.gnu.org>2016-02-08 15:36:16 +0000
commita011cd929d0a2b08b0e523e23523a567061c8da7 (patch)
tree4d1efbb39a9d10966c886dd48774317c71f0032a /gcc/ada/gcc-interface/misc.c
parentc0328be344ba97895486bb1d5486ecb94c8d2d26 (diff)
downloadgcc-a011cd929d0a2b08b0e523e23523a567061c8da7.zip
gcc-a011cd929d0a2b08b0e523e23523a567061c8da7.tar.gz
gcc-a011cd929d0a2b08b0e523e23523a567061c8da7.tar.bz2
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. From-SVN: r233218
Diffstat (limited to 'gcc/ada/gcc-interface/misc.c')
-rw-r--r--gcc/ada/gcc-interface/misc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ada/gcc-interface/misc.c b/gcc/ada/gcc-interface/misc.c
index 992ac0a..75e467b 100644
--- a/gcc/ada/gcc-interface/misc.c
+++ b/gcc/ada/gcc-interface/misc.c
@@ -355,7 +355,7 @@ gnat_init (void)
{
/* Do little here, most of the standard declarations are set up after the
front-end has been run. Use the same `char' as C for Interfaces.C. */
- build_common_tree_nodes (flag_signed_char, false);
+ build_common_tree_nodes (flag_signed_char);
/* In Ada, we use an unsigned 8-bit type for the default boolean type. */
boolean_type_node = make_unsigned_type (8);