This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 491cae7d301 Daily bump. new 2a54db2d8ba libgccjit: Add ability to get CPU features
The 1 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/Makefile.in | 38 ++++++++- gcc/config.gcc | 20 +++++ gcc/config/{default-d.cc => default-jit.cc} | 16 ++-- gcc/config/i386/i386-jit.cc | 71 ++++++++++++++++ gcc/config/{mips/elforion.h => i386/i386-jit.h} | 12 +-- gcc/config/i386/t-i386 | 4 + gcc/configure | 14 ++++ gcc/configure.ac | 14 ++++ gcc/doc/tm.texi | 19 +++++ gcc/doc/tm.texi.in | 14 ++++ gcc/genhooks.cc | 1 + gcc/jit/Make-lang.in | 8 +- gcc/jit/docs/topics/compatibility.rst | 13 +++ gcc/jit/docs/topics/compilation.rst | 56 +++++++++++++ gcc/jit/jit-playback.cc | 2 + gcc/jit/jit-playback.h | 32 +++++++- gcc/jit/jit-recording.cc | 36 ++++++++ gcc/jit/jit-recording.h | 15 ++++ .../rust-target-def.h => jit/jit-target-def.h} | 6 +- gcc/jit/jit-target.cc | 96 ++++++++++++++++++++++ gcc/{rust/rust-target.def => jit/jit-target.def} | 32 +++----- gcc/jit/jit-target.h | 75 +++++++++++++++++ gcc/jit/libgccjit.cc | 51 ++++++++++++ gcc/jit/libgccjit.h | 57 +++++++++++++ gcc/jit/libgccjit.map | 9 ++ gcc/testsuite/jit.dg/all-non-failing-tests.h | 3 + gcc/testsuite/jit.dg/test-error-target-info.c | 60 ++++++++++++++ gcc/testsuite/jit.dg/test-target-info.c | 61 ++++++++++++++ 28 files changed, 791 insertions(+), 44 deletions(-) copy gcc/config/{default-d.cc => default-jit.cc} (67%) create mode 100644 gcc/config/i386/i386-jit.cc copy gcc/config/{mips/elforion.h => i386/i386-jit.h} (71%) copy gcc/{rust/rust-target-def.h => jit/jit-target-def.h} (81%) create mode 100644 gcc/jit/jit-target.cc copy gcc/{rust/rust-target.def => jit/jit-target.def} (50%) create mode 100644 gcc/jit/jit-target.h create mode 100644 gcc/testsuite/jit.dg/test-error-target-info.c create mode 100644 gcc/testsuite/jit.dg/test-target-info.c