This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 24c0aa9af62 [DAGCombine] optimizeSetCCOfSignedTruncationCheck(): handle [...] new 8aa95af9e5c MacroFusion: Fix macro fusion with ExitSU failing in top-do [...] new 23f8b780224 [RISCV] Add support for _interrupt attribute
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/CodeGen/MacroFusion.cpp | 12 +- lib/Target/RISCV/RISCVCallingConv.td | 37 + lib/Target/RISCV/RISCVFrameLowering.cpp | 30 + lib/Target/RISCV/RISCVISelLowering.cpp | 43 + lib/Target/RISCV/RISCVISelLowering.h | 3 + lib/Target/RISCV/RISCVInstrInfo.cpp | 6 +- lib/Target/RISCV/RISCVInstrInfo.td | 10 + lib/Target/RISCV/RISCVRegisterInfo.cpp | 16 +- test/CodeGen/AArch64/macro-fusion-last.mir | 28 + test/CodeGen/RISCV/interrupt-attr-args-error.ll | 11 + test/CodeGen/RISCV/interrupt-attr-invalid.ll | 11 + test/CodeGen/RISCV/interrupt-attr-nocall.ll | 217 +++++ test/CodeGen/RISCV/interrupt-attr-ret-error.ll | 12 + test/CodeGen/RISCV/interrupt-attr.ll | 1066 +++++++++++++++++++++++ 14 files changed, 1498 insertions(+), 4 deletions(-) create mode 100644 test/CodeGen/AArch64/macro-fusion-last.mir create mode 100644 test/CodeGen/RISCV/interrupt-attr-args-error.ll create mode 100644 test/CodeGen/RISCV/interrupt-attr-invalid.ll create mode 100644 test/CodeGen/RISCV/interrupt-attr-nocall.ll create mode 100644 test/CodeGen/RISCV/interrupt-attr-ret-error.ll create mode 100644 test/CodeGen/RISCV/interrupt-attr.ll