This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from d7511a6154f [mips] Teach the delay slot filler to transform 'jal' for m [...] new 7b0e2e0edb1 [RISCV] Support "call" pseudoinstruction in the MC layer new 59bf3bda3c6 [RISCV] Expand function call to "call" pseudoinstruction
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: lib/Target/RISCV/AsmParser/RISCVAsmParser.cpp | 14 +++ .../RISCV/MCTargetDesc/RISCVELFObjectWriter.cpp | 11 ++ lib/Target/RISCV/MCTargetDesc/RISCVFixupKinds.h | 3 + .../RISCV/MCTargetDesc/RISCVMCCodeEmitter.cpp | 50 ++++++++ lib/Target/RISCV/MCTargetDesc/RISCVMCExpr.cpp | 6 +- lib/Target/RISCV/MCTargetDesc/RISCVMCExpr.h | 1 + lib/Target/RISCV/RISCVISelLowering.cpp | 11 +- lib/Target/RISCV/RISCVInstrInfo.cpp | 2 + lib/Target/RISCV/RISCVInstrInfo.td | 32 ++++- test/CodeGen/RISCV/alloca.ll | 12 +- test/CodeGen/RISCV/analyze-branch.ll | 14 +-- test/CodeGen/RISCV/bswap-ctlz-cttz-ctpop.ll | 132 +++++++++------------ test/CodeGen/RISCV/byval.ll | 4 +- test/CodeGen/RISCV/calling-conv-sext-zext.ll | 72 +++-------- test/CodeGen/RISCV/calling-conv.ll | 120 ++++++------------- test/CodeGen/RISCV/calls.ll | 36 ++---- test/CodeGen/RISCV/div.ll | 48 ++------ test/CodeGen/RISCV/double-br-fcmp.ll | 68 +++-------- test/CodeGen/RISCV/double-calling-conv.ll | 12 +- test/CodeGen/RISCV/double-intrinsics.ll | 4 +- test/CodeGen/RISCV/double-mem.ll | 8 +- test/CodeGen/RISCV/double-previous-failure.ll | 18 +-- test/CodeGen/RISCV/double-stack-spill-restore.ll | 4 +- test/CodeGen/RISCV/float-br-fcmp.ll | 90 ++++---------- test/CodeGen/RISCV/float-mem.ll | 8 +- test/CodeGen/RISCV/fp128.ll | 12 +- test/CodeGen/RISCV/frame.ll | 8 +- test/CodeGen/RISCV/frameaddr-returnaddr.ll | 4 +- test/CodeGen/RISCV/mul.ll | 28 ++--- test/CodeGen/RISCV/rem.ll | 8 +- test/CodeGen/RISCV/shifts.ll | 12 +- test/CodeGen/RISCV/vararg.ll | 64 +++------- test/MC/RISCV/function-call-invalid.s | 11 ++ test/MC/RISCV/function-call.s | 19 +++ 34 files changed, 383 insertions(+), 563 deletions(-) create mode 100644 test/MC/RISCV/function-call-invalid.s create mode 100644 test/MC/RISCV/function-call.s