diff options
author | Martin Liska <mliska@suse.cz> | 2019-05-06 09:23:03 +0200 |
---|---|---|
committer | Martin Liska <marxin@gcc.gnu.org> | 2019-05-06 07:23:03 +0000 |
commit | a79420f995764129dc40d1abcbf8ce75a0b0f906 (patch) | |
tree | 0526b8bb26dbc7954ff2600528da1c83fb3d1c55 /gcc/lto/lto-lang.c | |
parent | 2bf6d93547e516b6b2b2051c0fb1b47ea4acc8a4 (diff) | |
download | gcc-a79420f995764129dc40d1abcbf8ce75a0b0f906.zip gcc-a79420f995764129dc40d1abcbf8ce75a0b0f906.tar.gz gcc-a79420f995764129dc40d1abcbf8ce75a0b0f906.tar.bz2 |
Split part of functionality from lto.c to lto-common.c.
2019-05-06 Martin Liska <mliska@suse.cz>
Hrishikesh Kulkarni <hrishikeshparag@gmail.com>
* Make-lang.in: Add lto-common.o.
* config-lang.in: Likewise for gtfiles.
* lto-common.c: New file.
* lto-common.h: New file.
* lto-lang.c: Include lto-common.h.
* lto.c: Move most of the functionality
into lto-common.c file.
Co-Authored-By: Hrishikesh Kulkarni <hrishikeshparag@gmail.com>
From-SVN: r270896
Diffstat (limited to 'gcc/lto/lto-lang.c')
-rw-r--r-- | gcc/lto/lto-lang.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/lto/lto-lang.c b/gcc/lto/lto-lang.c index 5a35d47..b88ca09 100644 --- a/gcc/lto/lto-lang.c +++ b/gcc/lto/lto-lang.c @@ -34,6 +34,7 @@ along with GCC; see the file COPYING3. If not see #include "debug.h" #include "lto-tree.h" #include "lto.h" +#include "lto-common.h" #include "stringpool.h" #include "attribs.h" |