This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 4c02879 Simplify some code found when it was moved in r277177 new f4cfadb [Orc] Fix common symbol support in ORC. new 23429a5 [WebAssembly] Support CFI for WebAssembly target new a9ed4cc [ADT] NFC: Generalize GraphTraits requirement of "NodeType *" [...]
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/ADT/GraphTraits.h | 15 ++-- include/llvm/ADT/SCCIterator.h | 37 +++++---- include/llvm/Analysis/CallGraph.h | 2 + include/llvm/CodeGen/MachineBasicBlock.h | 4 + include/llvm/ExecutionEngine/JITSymbolFlags.h | 11 ++- .../llvm/ExecutionEngine/Orc/ObjectLinkingLayer.h | 2 +- include/llvm/IR/CFG.h | 4 + lib/Analysis/BlockFrequencyInfoImpl.cpp | 1 + lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp | 10 ++- .../MCTargetDesc/WebAssemblyMCTargetDesc.h | 4 +- .../MCTargetDesc/WebAssemblyTargetStreamer.cpp | 12 ++- .../MCTargetDesc/WebAssemblyTargetStreamer.h | 4 + lib/Target/WebAssembly/WebAssemblyAsmPrinter.cpp | 11 ++- lib/Transforms/IPO/FunctionAttrs.cpp | 1 + lib/Transforms/IPO/LowerTypeTests.cpp | 93 ++++++++++++++++------ test/CodeGen/WebAssembly/cfi.ll | 53 ++++++++++++ test/ExecutionEngine/OrcLazy/common-symbols.ll | 18 +++++ .../Transforms/LowerTypeTests/function-disjoint.ll | 45 +++++++++++ test/Transforms/LowerTypeTests/function-ext.ll | 14 ++-- test/Transforms/LowerTypeTests/function.ll | 28 ++++--- unittests/ADT/SCCIteratorTest.cpp | 1 + 21 files changed, 299 insertions(+), 71 deletions(-) create mode 100644 test/CodeGen/WebAssembly/cfi.ll create mode 100644 test/ExecutionEngine/OrcLazy/common-symbols.ll create mode 100644 test/Transforms/LowerTypeTests/function-disjoint.ll