This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 738ee045416 [AMDGPU] Fix for DAGCombiner infinite loop in OCLtst new 231876457fe TableGen: Add !dag function for construction new 14236ebc9ca TableGen: Allow ? in lists new 8ed1fd468ae TableGen: Type-check BinOps new 79175dbbae0 TableGen: Allow dag operators to be resolved late new af0de5073c2 TableGen: Add !ne, !le, !lt, !ge, and !gt comparisons new 3e7114a4b6f TableGen: Explicitly forbid some nestings of class, multicl [...]
The 6 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/TableGen/LangIntro.rst | 33 +++++- docs/TableGen/LangRef.rst | 3 +- include/llvm/TableGen/Record.h | 4 +- lib/TableGen/Record.cpp | 79 ++++++++++++--- lib/TableGen/TGLexer.cpp | 6 ++ lib/TableGen/TGLexer.h | 3 +- lib/TableGen/TGParser.cpp | 217 ++++++++++++++++++++++++++++++++-------- test/TableGen/Paste.td | 10 ++ test/TableGen/arithmetic.td | 25 +++++ test/TableGen/compare.td | 54 ++++++++++ test/TableGen/dag-functional.td | 116 +++++++++++++++++++++ test/TableGen/eq.td | 20 +++- test/TableGen/eqbit.td | 13 ++- test/TableGen/listconcat.td | 16 +++ test/TableGen/math.td | 17 ++++ 15 files changed, 551 insertions(+), 65 deletions(-) create mode 100644 test/TableGen/arithmetic.td create mode 100644 test/TableGen/compare.td create mode 100644 test/TableGen/dag-functional.td