This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 87b8537d3eb AArch64: Emit a call frame instruction for the shadow call [...] new 23d2738abf1 [PowerPC][NFC] Add tests for vector fp <-> int conversions
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: test/CodeGen/PowerPC/vec_conv_fp32_to_i16_elts.ll | 1474 +++++++++++++++++++ test/CodeGen/PowerPC/vec_conv_fp32_to_i64_elts.ll | 846 +++++++++++ test/CodeGen/PowerPC/vec_conv_fp32_to_i8_elts.ll | 1486 ++++++++++++++++++++ test/CodeGen/PowerPC/vec_conv_fp64_to_i16_elts.ll | 1304 +++++++++++++++++ test/CodeGen/PowerPC/vec_conv_fp64_to_i32_elts.ll | 598 ++++++++ test/CodeGen/PowerPC/vec_conv_fp64_to_i8_elts.ll | 1316 +++++++++++++++++ .../CodeGen/PowerPC/vec_conv_fp_to_i_4byte_elts.ll | 304 ++++ .../CodeGen/PowerPC/vec_conv_fp_to_i_8byte_elts.ll | 438 ++++++ test/CodeGen/PowerPC/vec_conv_i16_to_fp32_elts.ll | 1366 ++++++++++++++++++ test/CodeGen/PowerPC/vec_conv_i16_to_fp64_elts.ll | 828 +++++++++++ test/CodeGen/PowerPC/vec_conv_i32_to_fp64_elts.ll | 518 +++++++ test/CodeGen/PowerPC/vec_conv_i64_to_fp32_elts.ll | 844 +++++++++++ test/CodeGen/PowerPC/vec_conv_i8_to_fp32_elts.ll | 1382 ++++++++++++++++++ test/CodeGen/PowerPC/vec_conv_i8_to_fp64_elts.ll | 1322 +++++++++++++++++ .../CodeGen/PowerPC/vec_conv_i_to_fp_4byte_elts.ll | 304 ++++ .../CodeGen/PowerPC/vec_conv_i_to_fp_8byte_elts.ll | 438 ++++++ 16 files changed, 14768 insertions(+) create mode 100644 test/CodeGen/PowerPC/vec_conv_fp32_to_i16_elts.ll create mode 100644 test/CodeGen/PowerPC/vec_conv_fp32_to_i64_elts.ll create mode 100644 test/CodeGen/PowerPC/vec_conv_fp32_to_i8_elts.ll create mode 100644 test/CodeGen/PowerPC/vec_conv_fp64_to_i16_elts.ll create mode 100644 test/CodeGen/PowerPC/vec_conv_fp64_to_i32_elts.ll create mode 100644 test/CodeGen/PowerPC/vec_conv_fp64_to_i8_elts.ll create mode 100644 test/CodeGen/PowerPC/vec_conv_fp_to_i_4byte_elts.ll create mode 100644 test/CodeGen/PowerPC/vec_conv_fp_to_i_8byte_elts.ll create mode 100644 test/CodeGen/PowerPC/vec_conv_i16_to_fp32_elts.ll create mode 100644 test/CodeGen/PowerPC/vec_conv_i16_to_fp64_elts.ll create mode 100644 test/CodeGen/PowerPC/vec_conv_i32_to_fp64_elts.ll create mode 100644 test/CodeGen/PowerPC/vec_conv_i64_to_fp32_elts.ll create mode 100644 test/CodeGen/PowerPC/vec_conv_i8_to_fp32_elts.ll create mode 100644 test/CodeGen/PowerPC/vec_conv_i8_to_fp64_elts.ll create mode 100644 test/CodeGen/PowerPC/vec_conv_i_to_fp_4byte_elts.ll create mode 100644 test/CodeGen/PowerPC/vec_conv_i_to_fp_8byte_elts.ll