This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 89327354e33 Fix a typo in two_value_replacement function new 0c141fc4b98 Split i386.c. new 1c073ad2707 Split part of functionality from lto.c to lto-common.c. new b340d73fc16 Add lto-dump tool. new 19bf75f8bc0 Fix GNU coding style in lto-common.c.
The 4 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: gcc/ChangeLog | 33 + gcc/Makefile.in | 2 +- gcc/cgraph.h | 6 + gcc/config.gcc | 6 +- gcc/config/i386/i386-builtins.c | 2539 + gcc/config/i386/i386-builtins.h | 330 + gcc/config/i386/i386-expand.c | 19840 ++++++ gcc/config/i386/i386-expand.h | 58 + gcc/config/i386/i386-features.c | 2742 + gcc/config/i386/i386-features.h | 201 + gcc/config/i386/i386-options.c | 3688 ++ gcc/config/i386/i386-options.h | 95 + gcc/config/i386/i386.c | 63106 +++++-------------- gcc/config/i386/i386.h | 9 + gcc/config/i386/t-i386 | 16 + gcc/doc/gcc.texi | 5 + gcc/doc/lto-dump.texi | 131 + gcc/dumpfile.c | 85 +- gcc/dumpfile.h | 5 + gcc/lto/ChangeLog | 30 + gcc/lto/Make-lang.in | 22 +- gcc/lto/config-lang.in | 4 +- gcc/lto/lang.opt | 62 + gcc/lto/{lto.c => lto-common.c} | 873 +- .../visium/visium-passes.def => lto/lto-common.h} | 22 +- gcc/lto/lto-dump.c | 344 + gcc/lto/lto-lang.c | 7 +- gcc/lto/lto.c | 2869 +- gcc/lto/lto.h | 2 + gcc/symtab.c | 17 + 30 files changed, 47555 insertions(+), 49594 deletions(-) create mode 100644 gcc/config/i386/i386-builtins.c create mode 100644 gcc/config/i386/i386-builtins.h create mode 100644 gcc/config/i386/i386-expand.c create mode 100644 gcc/config/i386/i386-expand.h create mode 100644 gcc/config/i386/i386-features.c create mode 100644 gcc/config/i386/i386-features.h create mode 100644 gcc/config/i386/i386-options.c create mode 100644 gcc/config/i386/i386-options.h create mode 100644 gcc/doc/lto-dump.texi copy gcc/lto/{lto.c => lto-common.c} (78%) copy gcc/{config/visium/visium-passes.def => lto/lto-common.h} (62%) create mode 100644 gcc/lto/lto-dump.c