This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 57c865bc5db Revert "Roll forward r314928" new 4c72b95c52e [llvm-rc] Serialize CURSOR and ICON resources to .res new 93bb30da3ff [llvm-rc] Serialize VERSIONINFO resources to .res files.
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: .../llvm-rc/Inputs/parser-correct-everything.rc | 10 +- .../llvm-rc/Inputs/tag-icon-cursor-bad-offset.rc | 2 + .../llvm-rc/Inputs/tag-icon-cursor-bad-type.rc | 1 + test/tools/llvm-rc/Inputs/tag-icon-cursor-eof.rc | 1 + .../llvm-rc/Inputs/tag-icon-cursor-nonexistent.rc | 1 + .../llvm-rc/Inputs/tag-icon-cursor-nonsense.rc | 1 + test/tools/llvm-rc/Inputs/tag-icon-cursor.rc | 6 + .../Inputs/tag-versioninfo-mixed-ints-strings.rc | 18 + .../Inputs/tag-versioninfo-word-too-large.rc | 18 + test/tools/llvm-rc/Inputs/tag-versioninfo.rc | 32 ++ test/tools/llvm-rc/parser.test | 10 +- test/tools/llvm-rc/tag-icon-cursor.test | 357 ++++++++++++++++ test/tools/llvm-rc/tag-versioninfo.test | 66 +++ tools/llvm-rc/ResourceFileWriter.cpp | 454 ++++++++++++++++++++- tools/llvm-rc/ResourceFileWriter.h | 23 +- tools/llvm-rc/ResourceScriptParser.cpp | 40 +- tools/llvm-rc/ResourceScriptParser.h | 10 +- tools/llvm-rc/ResourceScriptStmt.cpp | 8 +- tools/llvm-rc/ResourceScriptStmt.h | 124 +++++- tools/llvm-rc/ResourceScriptToken.cpp | 4 + tools/llvm-rc/ResourceScriptToken.h | 1 + tools/llvm-rc/ResourceVisitor.h | 3 + 22 files changed, 1141 insertions(+), 49 deletions(-) create mode 100644 test/tools/llvm-rc/Inputs/tag-icon-cursor-bad-offset.rc create mode 100644 test/tools/llvm-rc/Inputs/tag-icon-cursor-bad-type.rc create mode 100644 test/tools/llvm-rc/Inputs/tag-icon-cursor-eof.rc create mode 100644 test/tools/llvm-rc/Inputs/tag-icon-cursor-nonexistent.rc create mode 100644 test/tools/llvm-rc/Inputs/tag-icon-cursor-nonsense.rc create mode 100644 test/tools/llvm-rc/Inputs/tag-icon-cursor.rc create mode 100644 test/tools/llvm-rc/Inputs/tag-versioninfo-mixed-ints-strings.rc create mode 100644 test/tools/llvm-rc/Inputs/tag-versioninfo-word-too-large.rc create mode 100644 test/tools/llvm-rc/Inputs/tag-versioninfo.rc create mode 100644 test/tools/llvm-rc/tag-icon-cursor.test create mode 100644 test/tools/llvm-rc/tag-versioninfo.test