This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 4c0c77a59c7 [Support] env vars with empty values on windows new c05432ec0f1 [llvm-rc] Add basic RC scripts parsing ability. new a8f3cf28e07 [Dominators] Don't print the whole tree when running with -debug
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: include/llvm/Support/GenericDomTreeConstruction.h | 3 - .../llvm-rc/Inputs/parser-correct-everything.rc | 15 ++ test/tools/llvm-rc/Inputs/parser-eof.rc | 1 + .../llvm-rc/Inputs/parser-language-no-comma.rc | 1 + .../Inputs/parser-language-too-many-commas.rc | 1 + .../Inputs/parser-no-characteristics-arg.rc | 5 + test/tools/llvm-rc/Inputs/parser-nonsense-token.rc | 1 + .../llvm-rc/Inputs/parser-nonsense-type-eof.rc | 1 + test/tools/llvm-rc/Inputs/parser-nonsense-type.rc | 1 + .../llvm-rc/Inputs/parser-stringtable-no-string.rc | 6 + .../Inputs/parser-stringtable-weird-option.rc | 4 + test/tools/llvm-rc/parser.test | 67 ++++++ test/tools/llvm-rc/tokenizer.test | 4 +- tools/llvm-rc/CMakeLists.txt | 2 + tools/llvm-rc/ResourceScriptParser.cpp | 265 +++++++++++++++++++++ tools/llvm-rc/ResourceScriptParser.h | 143 +++++++++++ tools/llvm-rc/ResourceScriptStmt.cpp | 60 +++++ tools/llvm-rc/ResourceScriptStmt.h | 145 +++++++++++ tools/llvm-rc/llvm-rc.cpp | 8 + 19 files changed, 729 insertions(+), 4 deletions(-) create mode 100644 test/tools/llvm-rc/Inputs/parser-correct-everything.rc create mode 100644 test/tools/llvm-rc/Inputs/parser-eof.rc create mode 100644 test/tools/llvm-rc/Inputs/parser-language-no-comma.rc create mode 100644 test/tools/llvm-rc/Inputs/parser-language-too-many-commas.rc create mode 100644 test/tools/llvm-rc/Inputs/parser-no-characteristics-arg.rc create mode 100644 test/tools/llvm-rc/Inputs/parser-nonsense-token.rc create mode 100644 test/tools/llvm-rc/Inputs/parser-nonsense-type-eof.rc create mode 100644 test/tools/llvm-rc/Inputs/parser-nonsense-type.rc create mode 100644 test/tools/llvm-rc/Inputs/parser-stringtable-no-string.rc create mode 100644 test/tools/llvm-rc/Inputs/parser-stringtable-weird-option.rc create mode 100644 test/tools/llvm-rc/parser.test create mode 100644 tools/llvm-rc/ResourceScriptParser.cpp create mode 100644 tools/llvm-rc/ResourceScriptParser.h create mode 100644 tools/llvm-rc/ResourceScriptStmt.cpp create mode 100644 tools/llvm-rc/ResourceScriptStmt.h