This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from b34eb330 2015-11-14 Steven G. Kargl kargl@gcc.gnu.org new a983328 gcc/ 2015-11-14 Jakub Jelinek jakub@redhat.com
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/ChangeLog | 8 + gcc/c/ChangeLog | 5 + gcc/c/c-typeck.c | 5 +- gcc/cp/ChangeLog | 5 + gcc/cp/semantics.c | 3 + gcc/omp-low.c | 12 +- gcc/tree-vectorizer.c | 15 + libgomp/ChangeLog | 101 ++ libgomp/Makefile.am | 2 +- libgomp/Makefile.in | 5 +- libgomp/libgomp-plugin.h | 1 + libgomp/libgomp.h | 221 ++-- libgomp/libgomp.map | 5 + libgomp/oacc-mem.c | 1 - libgomp/ordered.c | 12 + libgomp/parallel.c | 2 +- libgomp/priority_queue.c | 300 +++++ libgomp/priority_queue.h | 485 ++++++++ libgomp/splay-tree.c | 27 +- libgomp/splay-tree.h | 72 +- libgomp/target.c | 210 ++-- libgomp/task.c | 1196 ++++++++++++-------- libgomp/taskloop.c | 71 +- libgomp/team.c | 7 +- .../libgomp.c/{doacross-2.c => doacross-3.c} | 8 +- libgomp/testsuite/libgomp.c/ordered-5.c | 30 + libgomp/testsuite/libgomp.c/priority.c | 62 + libgomp/testsuite/libgomp.c/target-31.c | 163 +++ libgomp/testsuite/libgomp.c/target-32.c | 54 + libgomp/testsuite/libgomp.c/target-33.c | 93 ++ libgomp/testsuite/libgomp.c/target-34.c | 112 ++ liboffloadmic/ChangeLog | 17 + liboffloadmic/plugin/libgomp-plugin-intelmic.cpp | 71 +- liboffloadmic/runtime/offload_host.cpp | 9 +- liboffloadmic/runtime/offload_host.h | 3 + 35 files changed, 2667 insertions(+), 726 deletions(-) create mode 100644 libgomp/priority_queue.c create mode 100644 libgomp/priority_queue.h copy libgomp/testsuite/libgomp.c/{doacross-2.c => doacross-3.c} (95%) create mode 100644 libgomp/testsuite/libgomp.c/ordered-5.c create mode 100644 libgomp/testsuite/libgomp.c/priority.c create mode 100644 libgomp/testsuite/libgomp.c/target-31.c create mode 100644 libgomp/testsuite/libgomp.c/target-32.c create mode 100644 libgomp/testsuite/libgomp.c/target-33.c create mode 100644 libgomp/testsuite/libgomp.c/target-34.c