aboutsummaryrefslogtreecommitdiff
path: root/gcc/lto-wrapper.c
diff options
context:
space:
mode:
authorJan Hubicka <jh@suse.cz>2011-01-05 16:07:09 +0000
committerJan Hubicka <jh@suse.cz>2011-01-05 16:07:09 +0000
commitc50f5cf153187a83390f47a9e2eeecfb7b53c0dd (patch)
treee3dcb3fe4f2adfc9a96d3722e0f6179a952cb86d /gcc/lto-wrapper.c
parenta85e6113db5c633763d857d3fa7c45826e86b1dd (diff)
* lto-wrapper.c (run_gcc): Default to WHOPR mode when none is specified
at the command line. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@168520 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/lto-wrapper.c')
-rw-r--r--gcc/lto-wrapper.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/gcc/lto-wrapper.c b/gcc/lto-wrapper.c
index 143e3fd1b66..6f106a31f45 100644
--- a/gcc/lto-wrapper.c
+++ b/gcc/lto-wrapper.c
@@ -422,7 +422,7 @@ run_gcc (unsigned argc, char *argv[])
argv_ptr[1] = "-o";
argv_ptr[2] = flto_out;
}
- else if (lto_mode == LTO_MODE_WHOPR)
+ else
{
const char *list_option = "-fltrans-output-list=";
size_t list_option_len = strlen (list_option);
@@ -457,8 +457,6 @@ run_gcc (unsigned argc, char *argv[])
argv_ptr[2] = "-fwpa";
}
- else
- fatal ("invalid LTO mode");
/* Append the input objects and possible preceeding arguments. */
for (i = 1; i < argc; ++i)
@@ -473,7 +471,7 @@ run_gcc (unsigned argc, char *argv[])
free (flto_out);
flto_out = NULL;
}
- else if (lto_mode == LTO_MODE_WHOPR)
+ else
{
FILE *stream = fopen (ltrans_output_file, "r");
FILE *mstream = NULL;
@@ -615,8 +613,6 @@ cont:
free (input_names);
free (list_option_full);
}
- else
- fatal ("invalid LTO mode");
obstack_free (&env_obstack, NULL);
}