This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 86286f91c50 [Debug info] Transfer DI to fragment expressions for split [...] new 0b33df9bb6b Reapply: [llvm-rc] Add basic RC scripts parsing ability.
The 1 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: .../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 | 267 +++++++++++++++++++++ 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 + 18 files changed, 731 insertions(+), 1 deletion(-) 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