This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 9a3e5b04013 [EarlyCSE] recognize commuted and swapped variants of min/m [...] new d76ae1215cc Reverting [JumpThreading] Preservation of DT and LVI across [...] new 8764e8a2279 [WebAssembly] Use bitfield types in wasm YAML representation new 946486c3897 [X86] Add CLWB schedule test
The 3 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/IR/DeferredDominance.h | 190 --------------- include/llvm/ObjectYAML/WasmYAML.h | 21 +- include/llvm/Transforms/Scalar/JumpThreading.h | 6 +- include/llvm/Transforms/Utils/BasicBlockUtils.h | 3 +- include/llvm/Transforms/Utils/Local.h | 21 +- lib/IR/Dominators.cpp | 54 ----- lib/ObjectYAML/WasmYAML.cpp | 22 ++ .../Scalar/CorrelatedValuePropagation.cpp | 2 - lib/Transforms/Scalar/JumpThreading.cpp | 175 +++----------- lib/Transforms/Utils/BasicBlockUtils.cpp | 18 +- lib/Transforms/Utils/Local.cpp | 205 ++++------------ .../LazyValueAnalysis/lvi-after-jumpthreading.ll | 3 - test/CodeGen/X86/clwb-schedule.ll | 18 ++ test/MC/WebAssembly/array-fill.ll | 4 +- test/MC/WebAssembly/bss.ll | 8 +- test/MC/WebAssembly/explicit-sections.ll | 6 +- test/MC/WebAssembly/init-fini-array.ll | 6 +- test/MC/WebAssembly/unnamed-data.ll | 12 +- test/MC/WebAssembly/visibility.ll | 2 +- test/MC/WebAssembly/weak-alias.ll | 12 +- test/MC/WebAssembly/weak.ll | 4 +- test/ObjectYAML/wasm/elem_section.yaml | 2 +- test/ObjectYAML/wasm/import_section.yaml | 8 +- test/ObjectYAML/wasm/linking_section.yaml | 12 +- test/ObjectYAML/wasm/memory_section.yaml | 4 +- test/ObjectYAML/wasm/table_section.yaml | 4 +- test/ObjectYAML/wasm/weak_symbols.yaml | 8 +- test/Transforms/JumpThreading/ddt-crash.ll | 265 --------------------- test/Transforms/JumpThreading/lvi-tristate.ll | 50 ---- test/tools/llvm-nm/wasm/weak-symbols.yaml | 8 +- 30 files changed, 207 insertions(+), 946 deletions(-) delete mode 100644 include/llvm/IR/DeferredDominance.h create mode 100644 test/CodeGen/X86/clwb-schedule.ll delete mode 100644 test/Transforms/JumpThreading/ddt-crash.ll delete mode 100644 test/Transforms/JumpThreading/lvi-tristate.ll