This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from bf34add [obj2yaml] Produce correct output for invalid relocations. new e1c01cc [PM] Enable the main loop pass pipelines with everything but [...] new e6f10d3 Add intrinsics for constrained floating point operations
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: docs/LangRef.rst | 271 +++++++++++++++++++++++ include/llvm/CodeGen/ISDOpcodes.h | 6 + include/llvm/CodeGen/SelectionDAGISel.h | 2 + include/llvm/IR/IntrinsicInst.h | 39 ++++ include/llvm/IR/Intrinsics.td | 36 +++ lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | 47 ++++ lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h | 1 + lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 60 +++++ lib/IR/IntrinsicInst.cpp | 32 +++ lib/IR/Verifier.cpp | 18 ++ lib/Passes/PassBuilder.cpp | 18 +- test/CodeGen/X86/fp-intrinsics.ll | 111 ++++++++++ test/Feature/fp-intrinsics.ll | 102 +++++++++ test/Other/new-pm-defaults.ll | 8 + test/Verifier/fp-intrinsics.ll | 43 ++++ 15 files changed, 782 insertions(+), 12 deletions(-) create mode 100644 test/CodeGen/X86/fp-intrinsics.ll create mode 100644 test/Feature/fp-intrinsics.ll create mode 100644 test/Verifier/fp-intrinsics.ll