This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 043e934 Make the test accept different OpCode values since it doesn't [...] new 054b604 Add the 'googlemock' component of Google Test to LLVM's unitt [...] new d8c5040 Remove unused CONVERT_RNDSAT intrinsics
The 2 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: cmake/modules/AddLLVM.cmake | 1 + include/llvm/CodeGen/ISDOpcodes.h | 28 - include/llvm/CodeGen/SelectionDAG.h | 6 - include/llvm/CodeGen/SelectionDAGNodes.h | 26 +- include/llvm/IR/Intrinsics.td | 27 +- include/llvm/Target/TargetSelectionDAG.td | 51 - lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp | 30 +- lib/CodeGen/SelectionDAG/LegalizeTypes.h | 4 - lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp | 106 - lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 25 - lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | 33 - lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp | 17 +- utils/unittest/CMakeLists.txt | 3 + utils/unittest/UnitTestMain/TestMain.cpp | 7 +- .../LICENSE.TXT => googlemock/LICENSE.txt} | 0 utils/unittest/googlemock/README.LLVM | 17 + .../googlemock/include/gmock/gmock-actions.h | 1205 ++++++ .../googlemock/include/gmock/gmock-cardinalities.h | 147 + .../include/gmock/gmock-generated-actions.h | 2377 +++++++++++ .../gmock/gmock-generated-function-mockers.h | 1095 +++++ .../include/gmock/gmock-generated-matchers.h | 2179 ++++++++++ .../include/gmock/gmock-generated-nice-strict.h | 397 ++ .../googlemock/include/gmock/gmock-matchers.h | 4399 ++++++++++++++++++++ .../googlemock/include/gmock/gmock-more-actions.h | 246 ++ .../googlemock/include/gmock/gmock-more-matchers.h | 58 + .../googlemock/include/gmock/gmock-spec-builders.h | 1847 ++++++++ utils/unittest/googlemock/include/gmock/gmock.h | 94 + .../internal/custom/gmock-generated-actions.h | 8 + .../include/gmock/internal/custom/gmock-matchers.h | 39 + .../include/gmock/internal/custom/gmock-port.h | 46 + .../internal/gmock-generated-internal-utils.h | 279 ++ .../include/gmock/internal/gmock-internal-utils.h | 511 +++ .../googlemock/include/gmock/internal/gmock-port.h | 91 + utils/unittest/googlemock/src/gmock-all.cc | 47 + .../unittest/googlemock/src/gmock-cardinalities.cc | 156 + .../googlemock/src/gmock-internal-utils.cc | 174 + utils/unittest/googlemock/src/gmock-matchers.cc | 498 +++ .../unittest/googlemock/src/gmock-spec-builders.cc | 823 ++++ utils/unittest/googlemock/src/gmock.cc | 183 + 39 files changed, 16932 insertions(+), 348 deletions(-) copy utils/unittest/{googletest/LICENSE.TXT => googlemock/LICENSE.txt} (100%) create mode 100644 utils/unittest/googlemock/README.LLVM create mode 100644 utils/unittest/googlemock/include/gmock/gmock-actions.h create mode 100644 utils/unittest/googlemock/include/gmock/gmock-cardinalities.h create mode 100644 utils/unittest/googlemock/include/gmock/gmock-generated-actions.h create mode 100644 utils/unittest/googlemock/include/gmock/gmock-generated-functio [...] create mode 100644 utils/unittest/googlemock/include/gmock/gmock-generated-matchers.h create mode 100644 utils/unittest/googlemock/include/gmock/gmock-generated-nice-strict.h create mode 100644 utils/unittest/googlemock/include/gmock/gmock-matchers.h create mode 100644 utils/unittest/googlemock/include/gmock/gmock-more-actions.h create mode 100644 utils/unittest/googlemock/include/gmock/gmock-more-matchers.h create mode 100644 utils/unittest/googlemock/include/gmock/gmock-spec-builders.h create mode 100644 utils/unittest/googlemock/include/gmock/gmock.h create mode 100644 utils/unittest/googlemock/include/gmock/internal/custom/gmock-g [...] create mode 100644 utils/unittest/googlemock/include/gmock/internal/custom/gmock-m [...] create mode 100644 utils/unittest/googlemock/include/gmock/internal/custom/gmock-port.h create mode 100644 utils/unittest/googlemock/include/gmock/internal/gmock-generate [...] create mode 100644 utils/unittest/googlemock/include/gmock/internal/gmock-internal [...] create mode 100644 utils/unittest/googlemock/include/gmock/internal/gmock-port.h create mode 100644 utils/unittest/googlemock/src/gmock-all.cc create mode 100644 utils/unittest/googlemock/src/gmock-cardinalities.cc create mode 100644 utils/unittest/googlemock/src/gmock-internal-utils.cc create mode 100644 utils/unittest/googlemock/src/gmock-matchers.cc create mode 100644 utils/unittest/googlemock/src/gmock-spec-builders.cc create mode 100644 utils/unittest/googlemock/src/gmock.cc