This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from a1660efdc41 [mips] Use the delay slot filler to convert branches for mi [...] new 30e25c33bc9 [ARM GlobalISel] Support G_FMUL for s32 and s64 new da18ebeb4eb [lit] Implement non-pipelined ‘mkdir’, ‘diff’ and ‘rm’ comm [...]
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: lib/CodeGen/GlobalISel/LegalizerHelper.cpp | 4 + lib/Target/ARM/ARMLegalizerInfo.cpp | 4 +- lib/Target/ARM/ARMRegisterBankInfo.cpp | 3 +- .../ARM/GlobalISel/arm-instruction-select.mir | 63 ++++++++ test/CodeGen/ARM/GlobalISel/arm-legalize-fp.mir | 90 +++++++++++ test/CodeGen/ARM/GlobalISel/arm-regbankselect.mir | 55 +++++++ utils/lit/lit/TestRunner.py | 164 +++++++++++++++++++++ utils/lit/tests/Inputs/shtest-shell/check_path.py | 28 ++++ .../lit/tests/Inputs/shtest-shell/diff-error-0.txt | 3 + .../lit/tests/Inputs/shtest-shell/diff-error-1.txt | 3 + .../lit/tests/Inputs/shtest-shell/diff-error-2.txt | 3 + .../lit/tests/Inputs/shtest-shell/diff-error-3.txt | 3 + .../lit/tests/Inputs/shtest-shell/diff-error-4.txt | 5 + .../lit/tests/Inputs/shtest-shell/diff-error-5.txt | 3 + .../lit/tests/Inputs/shtest-shell/diff-error-6.txt | 3 + .../tests/Inputs/shtest-shell/mkdir-error-0.txt | 3 + .../tests/Inputs/shtest-shell/mkdir-error-1.txt | 3 + .../tests/Inputs/shtest-shell/mkdir-error-2.txt | 3 + utils/lit/tests/Inputs/shtest-shell/rm-error-0.txt | 3 + utils/lit/tests/Inputs/shtest-shell/rm-error-1.txt | 3 + utils/lit/tests/Inputs/shtest-shell/rm-error-2.txt | 3 + utils/lit/tests/Inputs/shtest-shell/rm-error-3.txt | 4 + .../lit/tests/Inputs/shtest-shell/valid-shell.txt | 83 +++++++++++ utils/lit/tests/max-failures.py | 2 +- utils/lit/tests/shtest-shell.py | 117 ++++++++++++++- 25 files changed, 653 insertions(+), 5 deletions(-) create mode 100644 utils/lit/tests/Inputs/shtest-shell/check_path.py create mode 100644 utils/lit/tests/Inputs/shtest-shell/diff-error-0.txt create mode 100644 utils/lit/tests/Inputs/shtest-shell/diff-error-1.txt create mode 100644 utils/lit/tests/Inputs/shtest-shell/diff-error-2.txt create mode 100644 utils/lit/tests/Inputs/shtest-shell/diff-error-3.txt create mode 100644 utils/lit/tests/Inputs/shtest-shell/diff-error-4.txt create mode 100644 utils/lit/tests/Inputs/shtest-shell/diff-error-5.txt create mode 100644 utils/lit/tests/Inputs/shtest-shell/diff-error-6.txt create mode 100644 utils/lit/tests/Inputs/shtest-shell/mkdir-error-0.txt create mode 100644 utils/lit/tests/Inputs/shtest-shell/mkdir-error-1.txt create mode 100644 utils/lit/tests/Inputs/shtest-shell/mkdir-error-2.txt create mode 100644 utils/lit/tests/Inputs/shtest-shell/rm-error-0.txt create mode 100644 utils/lit/tests/Inputs/shtest-shell/rm-error-1.txt create mode 100644 utils/lit/tests/Inputs/shtest-shell/rm-error-2.txt create mode 100644 utils/lit/tests/Inputs/shtest-shell/rm-error-3.txt create mode 100644 utils/lit/tests/Inputs/shtest-shell/valid-shell.txt