This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 9e6a27fb0cb [llvm-mca] Correctly update the rank in `Scheduler::select()`. new 742c679d08b [llvm-objcopy] Add support for --rename-section flags from [...] new 08b4b50725a [llvm-mca][x86] Add PCLMUL instruction resource tests
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-mca/X86/Broadwell/resources-pclmul.s | 38 +++++++ .../{resources-clmul.s => resources-pclmul.s} | 0 test/tools/llvm-mca/X86/Generic/resources-pclmul.s | 36 +++++++ test/tools/llvm-mca/X86/Haswell/resources-pclmul.s | 38 +++++++ test/tools/llvm-mca/X86/SLM/resources-pclmul.s | 36 +++++++ .../{resources-clmul.s => resources-pclmul.s} | 0 .../llvm-mca/X86/SkylakeClient/resources-pclmul.s | 38 +++++++ .../llvm-mca/X86/SkylakeServer/resources-pclmul.s | 38 +++++++ test/tools/llvm-mca/X86/Znver1/resources-pclmul.s | 40 +++++++ .../rename-section-flag-osproc-mask.test | 115 +++++++++++++++++++++ .../rename-section-flag-preserved.test | 74 +++++++++++++ test/tools/llvm-objcopy/rename-section-flag.test | 60 +++++++++++ test/tools/llvm-objcopy/rename-section.test | 4 +- tools/llvm-objcopy/ObjcopyOpts.td | 10 +- tools/llvm-objcopy/llvm-objcopy.cpp | 111 ++++++++++++++++++-- 15 files changed, 625 insertions(+), 13 deletions(-) create mode 100644 test/tools/llvm-mca/X86/Broadwell/resources-pclmul.s rename test/tools/llvm-mca/X86/BtVer2/{resources-clmul.s => resources-pclmul.s} (100%) create mode 100644 test/tools/llvm-mca/X86/Generic/resources-pclmul.s create mode 100644 test/tools/llvm-mca/X86/Haswell/resources-pclmul.s create mode 100644 test/tools/llvm-mca/X86/SLM/resources-pclmul.s copy test/tools/llvm-mca/X86/SandyBridge/{resources-clmul.s => resources-pclmul.s} (100%) create mode 100644 test/tools/llvm-mca/X86/SkylakeClient/resources-pclmul.s create mode 100644 test/tools/llvm-mca/X86/SkylakeServer/resources-pclmul.s create mode 100644 test/tools/llvm-mca/X86/Znver1/resources-pclmul.s create mode 100644 test/tools/llvm-objcopy/rename-section-flag-osproc-mask.test create mode 100644 test/tools/llvm-objcopy/rename-section-flag-preserved.test create mode 100644 test/tools/llvm-objcopy/rename-section-flag.test