* tree-outof-ssa.h (ssaexpand): Add partitions_for_undefined_values.
[official-gcc.git] / libgfortran / runtime / main.c
blob8d466d1bba8381ead9f881ad29ce678feab7d4aa
1 /* Copyright (C) 2002-2017 Free Software Foundation, Inc.
2 Contributed by Andy Vaught and Paul Brook <paul@nowt.org>
4 This file is part of the GNU Fortran runtime library (libgfortran).
6 Libgfortran is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3, or (at your option)
9 any later version.
11 Libgfortran is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 Under Section 7 of GPL version 3, you are granted additional
17 permissions described in the GCC Runtime Library Exception, version
18 3.1, as published by the Free Software Foundation.
20 You should have received a copy of the GNU General Public License and
21 a copy of the GCC Runtime Library Exception along with this program;
22 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23 <http://www.gnu.org/licenses/>. */
25 #include "libgfortran.h"
28 /* Stupid function to be sure the constructor is always linked in, even
29 in the case of static linking. See PR libfortran/22298 for details. */
30 void
31 stupid_function_name_for_static_linking (void)
33 return;
36 /* This will be 0 for little-endian
37 machines and 1 for big-endian machines. */
38 int big_endian = 0;
41 /* Figure out endianness for this machine. */
43 static void
44 determine_endianness (void)
46 union
48 GFC_LOGICAL_8 l8;
49 GFC_LOGICAL_4 l4[2];
50 } u;
52 u.l8 = 1;
53 if (u.l4[0])
54 big_endian = 0;
55 else if (u.l4[1])
56 big_endian = 1;
57 else
58 runtime_error ("Unable to determine machine endianness");
62 static int argc_save;
63 static char **argv_save;
66 /* Set the saved values of the command line arguments. */
68 void
69 set_args (int argc, char **argv)
71 argc_save = argc;
72 argv_save = argv;
74 iexport(set_args);
77 /* Retrieve the saved values of the command line arguments. */
79 void
80 get_args (int *argc, char ***argv)
82 *argc = argc_save;
83 *argv = argv_save;
87 /* Initialize the runtime library. */
89 static void __attribute__((constructor))
90 init (void)
92 /* Figure out the machine endianness. */
93 determine_endianness ();
95 /* Must be first */
96 init_variables ();
98 init_units ();
100 /* If (and only if) the user asked for it, set up the FPU state. */
101 if (options.fpe != 0)
102 set_fpu ();
104 init_compile_options ();
108 /* Cleanup the runtime library. */
110 static void __attribute__((destructor))
111 cleanup (void)
113 close_units ();