This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 3926274437d [X86] Remove some isel patterns that shouldn't be possible. new 2fa550c88a1 [WebAssembly] LSDA info generation
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/llvm/CodeGen/MachineFunction.h | 22 +- include/llvm/IR/IntrinsicsWebAssembly.td | 3 +- lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 3 +- lib/CodeGen/AsmPrinter/CMakeLists.txt | 1 + lib/CodeGen/AsmPrinter/EHStreamer.cpp | 10 +- lib/CodeGen/AsmPrinter/EHStreamer.h | 11 +- lib/CodeGen/AsmPrinter/WasmException.cpp | 81 +++++++ lib/CodeGen/AsmPrinter/WasmException.h | 42 ++++ lib/CodeGen/MachineFunction.cpp | 45 ++-- lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | 10 +- lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 83 ++++--- lib/CodeGen/TargetLoweringObjectFileImpl.cpp | 4 + lib/CodeGen/WasmEHPrepare.cpp | 2 +- lib/MC/MCObjectFileInfo.cpp | 6 + lib/MC/WasmObjectWriter.cpp | 4 +- lib/Target/WebAssembly/WebAssemblyISelLowering.cpp | 15 +- lib/Target/WebAssembly/WebAssemblyInstrInfo.td | 2 + lib/Target/WebAssembly/WebAssemblyMCInstLower.cpp | 7 + test/CodeGen/WebAssembly/eh-lsda.ll | 239 +++++++++++++++++++++ test/CodeGen/WebAssembly/wasmehprepare.ll | 6 +- 20 files changed, 529 insertions(+), 67 deletions(-) create mode 100644 lib/CodeGen/AsmPrinter/WasmException.cpp create mode 100644 lib/CodeGen/AsmPrinter/WasmException.h create mode 100644 test/CodeGen/WebAssembly/eh-lsda.ll