This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from d367f44 AMDGPU add support for spilling to a user sgpr pointed buffers new 431645e [coroutines] Spill the result of the invoke instruction correctly new 4a50c7f Reinstate "r292904 - [lit] Allow boolean expressions in REQUI [...]
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: docs/TestingGuide.rst | 64 +++--- lib/Transforms/Coroutines/CoroFrame.cpp | 30 ++- test/Transforms/Coroutines/coro-frame.ll | 61 +++++ utils/lit/lit/BooleanExpression.py | 251 +++++++++++++++++++++ utils/lit/lit/Test.py | 118 ++++++++-- utils/lit/lit/TestRunner.py | 165 +++++++++----- .../Inputs/shtest-format/requires-missing.txt | 7 +- .../Inputs/shtest-format/requires-present.txt | 4 +- .../tests/Inputs/shtest-format/requires-star.txt | 3 + .../tests/Inputs/shtest-format/requires-triple.txt | 3 + .../shtest-format/unsupported-expr-false.txt | 9 + .../Inputs/shtest-format/unsupported-expr-true.txt | 4 + .../Inputs/shtest-format/unsupported-star.txt | 3 + .../Inputs/shtest-format/xfail-expr-false.txt | 3 + .../tests/Inputs/shtest-format/xfail-expr-true.txt | 4 + utils/lit/tests/boolean-parsing.py | 4 + utils/lit/tests/shtest-format.py | 15 +- utils/lit/tests/unit/TestRunner.py | 57 +++++ 18 files changed, 684 insertions(+), 121 deletions(-) create mode 100644 test/Transforms/Coroutines/coro-frame.ll create mode 100644 utils/lit/lit/BooleanExpression.py create mode 100644 utils/lit/tests/Inputs/shtest-format/requires-star.txt create mode 100644 utils/lit/tests/Inputs/shtest-format/requires-triple.txt create mode 100644 utils/lit/tests/Inputs/shtest-format/unsupported-expr-false.txt create mode 100644 utils/lit/tests/Inputs/shtest-format/unsupported-expr-true.txt create mode 100644 utils/lit/tests/Inputs/shtest-format/unsupported-star.txt create mode 100644 utils/lit/tests/Inputs/shtest-format/xfail-expr-false.txt create mode 100644 utils/lit/tests/Inputs/shtest-format/xfail-expr-true.txt create mode 100644 utils/lit/tests/boolean-parsing.py