aboutsummaryrefslogtreecommitdiff
path: root/gcc/lto-wrapper.c
diff options
context:
space:
mode:
authorRichard Guenther <rguenther@suse.de>2010-11-18 11:19:20 +0000
committerRichard Guenther <rguenther@suse.de>2010-11-18 11:19:20 +0000
commit73382a379c6f514bf4bfda8939aee41632451643 (patch)
tree11b160afac151698a19a1c5facdc94e5740cc863 /gcc/lto-wrapper.c
parent1d7b6d22758b0e016b5c37bf7b604d07704c8553 (diff)
2010-11-18 Richard Guenther <rguenther@suse.de>
* lto-wrapper.c (run_gcc): Fix -flto=N parsing. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@166901 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/lto-wrapper.c')
-rw-r--r--gcc/lto-wrapper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/lto-wrapper.c b/gcc/lto-wrapper.c
index dea51b07c73..d0a80ad2f39 100644
--- a/gcc/lto-wrapper.c
+++ b/gcc/lto-wrapper.c
@@ -383,7 +383,7 @@ run_gcc (unsigned argc, char *argv[])
}
else
{
- parallel = atoi (option+8);
+ parallel = atoi (option + 6);
if (parallel <= 1)
parallel = 0;
}