diff options
author | Bernd Schmidt <bernds@redhat.com> | 2016-02-08 15:36:16 +0000 |
---|---|---|
committer | Bernd Schmidt <bernds@gcc.gnu.org> | 2016-02-08 15:36:16 +0000 |
commit | a011cd929d0a2b08b0e523e23523a567061c8da7 (patch) | |
tree | 4d1efbb39a9d10966c886dd48774317c71f0032a /gcc/fortran/f95-lang.c | |
parent | c0328be344ba97895486bb1d5486ecb94c8d2d26 (diff) | |
download | gcc-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/fortran/f95-lang.c')
-rw-r--r-- | gcc/fortran/f95-lang.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gcc/fortran/f95-lang.c b/gcc/fortran/f95-lang.c index 9c3a311..b89a291 100644 --- a/gcc/fortran/f95-lang.c +++ b/gcc/fortran/f95-lang.c @@ -491,9 +491,8 @@ gfc_init_decl_processing (void) global_binding_level = current_binding_level; /* Build common tree nodes. char_type_node is unsigned because we - only use it for actual characters, not for INTEGER(1). Also, we - want double_type_node to actually have double precision. */ - build_common_tree_nodes (false, false); + only use it for actual characters, not for INTEGER(1). */ + build_common_tree_nodes (false); void_list_node = build_tree_list (NULL_TREE, void_type_node); |