This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 3ba34f33aa [Clang][Bundler] Fix for a potential memory leak [NFC] new 211daf9ad4 Reland "clang-misexpect: Profile Guided Validation of Perfor [...]
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: include/clang/Basic/DiagnosticFrontendKinds.td | 7 +++- include/clang/Basic/DiagnosticGroups.td | 1 + lib/CodeGen/CodeGenAction.cpp | 26 +++++++++++++ lib/Frontend/CompilerInvocation.cpp | 3 ++ .../misexpect-branch-nonconst-expect-arg.proftext | 9 +++++ test/Profile/Inputs/misexpect-branch.proftext | 9 +++++ .../Inputs/misexpect-switch-default-only.proftext | 12 ++++++ .../Inputs/misexpect-switch-default.proftext | 16 ++++++++ .../Inputs/misexpect-switch-nonconst.proftext | 17 +++++++++ test/Profile/Inputs/misexpect-switch.proftext | 16 ++++++++ test/Profile/misexpect-branch-cold.c | 26 +++++++++++++ .../misexpect-branch-nonconst-expected-val.c | 23 ++++++++++++ test/Profile/misexpect-branch-unpredictable.c | 25 +++++++++++++ test/Profile/misexpect-branch.c | 28 ++++++++++++++ test/Profile/misexpect-switch-default.c | 40 ++++++++++++++++++++ test/Profile/misexpect-switch-nonconst.c | 43 ++++++++++++++++++++++ test/Profile/misexpect-switch-only-default-case.c | 35 ++++++++++++++++++ test/Profile/misexpect-switch.c | 41 +++++++++++++++++++++ 18 files changed, 376 insertions(+), 1 deletion(-) create mode 100644 test/Profile/Inputs/misexpect-branch-nonconst-expect-arg.proftext create mode 100644 test/Profile/Inputs/misexpect-branch.proftext create mode 100644 test/Profile/Inputs/misexpect-switch-default-only.proftext create mode 100644 test/Profile/Inputs/misexpect-switch-default.proftext create mode 100644 test/Profile/Inputs/misexpect-switch-nonconst.proftext create mode 100644 test/Profile/Inputs/misexpect-switch.proftext create mode 100644 test/Profile/misexpect-branch-cold.c create mode 100644 test/Profile/misexpect-branch-nonconst-expected-val.c create mode 100644 test/Profile/misexpect-branch-unpredictable.c create mode 100644 test/Profile/misexpect-branch.c create mode 100644 test/Profile/misexpect-switch-default.c create mode 100644 test/Profile/misexpect-switch-nonconst.c create mode 100644 test/Profile/misexpect-switch-only-default-case.c create mode 100644 test/Profile/misexpect-switch.c