This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from eb6a004f330 GlobalISel: Add buildFMA to MachineIRBuilder new 51646414dae [CodeGen] Add lround/llround builtins
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: docs/LangRef.rst | 75 ++++++++++++++++++++ include/llvm/CodeGen/ISDOpcodes.h | 2 + include/llvm/IR/Intrinsics.td | 4 ++ include/llvm/IR/RuntimeLibcalls.def | 10 +++ lib/CodeGen/SelectionDAG/LegalizeDAG.cpp | 39 +++++++++++ lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp | 55 +++++++++++++++ lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp | 27 ++++++++ lib/CodeGen/SelectionDAG/LegalizeTypes.h | 5 ++ lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | 16 +++++ lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp | 2 + lib/CodeGen/TargetLoweringBase.cpp | 2 + lib/Target/X86/X86ISelLowering.cpp | 2 + test/CodeGen/AArch64/llround-conv.ll | 56 +++++++++++++++ test/CodeGen/AArch64/lround-conv.ll | 56 +++++++++++++++ test/CodeGen/ARM/llround-conv.ll | 25 +++++++ test/CodeGen/ARM/lround-conv.ll | 25 +++++++ test/CodeGen/Mips/llround-conv.ll | 56 +++++++++++++++ test/CodeGen/Mips/lround-conv.ll | 56 +++++++++++++++ test/CodeGen/PowerPC/llround-conv.ll | 56 +++++++++++++++ test/CodeGen/PowerPC/lround-conv.ll | 56 +++++++++++++++ test/CodeGen/X86/llround-conv-i32.ll | 60 ++++++++++++++++ test/CodeGen/X86/llround-conv.ll | 83 +++++++++++++++++++++++ test/CodeGen/X86/lround-conv-i32.ll | 32 +++++++++ test/CodeGen/X86/lround-conv.ll | 83 +++++++++++++++++++++++ 24 files changed, 883 insertions(+) create mode 100644 test/CodeGen/AArch64/llround-conv.ll create mode 100644 test/CodeGen/AArch64/lround-conv.ll create mode 100644 test/CodeGen/ARM/llround-conv.ll create mode 100644 test/CodeGen/ARM/lround-conv.ll create mode 100644 test/CodeGen/Mips/llround-conv.ll create mode 100644 test/CodeGen/Mips/lround-conv.ll create mode 100644 test/CodeGen/PowerPC/llround-conv.ll create mode 100644 test/CodeGen/PowerPC/lround-conv.ll create mode 100644 test/CodeGen/X86/llround-conv-i32.ll create mode 100644 test/CodeGen/X86/llround-conv.ll create mode 100644 test/CodeGen/X86/lround-conv-i32.ll create mode 100644 test/CodeGen/X86/lround-conv.ll