This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from a4e191b3237 [X86] Remove FMA4 scalar intrinsics. Use llvm.fma intrinsic [...] new fc2b3d0ed07 [AArch64][ARM] Armv8.4-A: Trace synchronization barrier ins [...] new 2d76367f823 CallGraphSCCPass: iterate over all functions.
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: include/llvm/ADT/SCCIterator.h | 24 +++-- lib/Analysis/CallGraphSCCPass.cpp | 110 +++++++++++++-------- lib/Target/AArch64/AArch64InstrInfo.td | 8 ++ lib/Target/AArch64/AArch64SystemOperands.td | 17 ++++ lib/Target/AArch64/AsmParser/AArch64AsmParser.cpp | 19 +++- .../AArch64/InstPrinter/AArch64InstPrinter.cpp | 10 ++ lib/Target/AArch64/Utils/AArch64BaseInfo.cpp | 8 ++ lib/Target/AArch64/Utils/AArch64BaseInfo.h | 8 ++ lib/Target/ARM/ARMInstrInfo.td | 16 +++ lib/Target/ARM/ARMInstrThumb2.td | 6 ++ lib/Target/ARM/AsmParser/ARMAsmParser.cpp | 49 +++++++++ lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp | 11 +++ lib/Target/ARM/InstPrinter/ARMInstPrinter.h | 2 + lib/Target/ARM/MCTargetDesc/ARMBaseInfo.h | 14 +++ test/MC/AArch64/armv8.4a-trace-error.s | 23 +++++ test/MC/AArch64/armv8.4a-trace.s | 6 ++ test/MC/ARM/armv8.4a-trace-error.s | 20 ++++ test/MC/ARM/armv8.4a-trace.s | 12 +++ test/MC/Disassembler/AArch64/armv8.4a-trace.txt | 3 + test/MC/Disassembler/ARM/armv8.4a-trace-a32.txt | 10 ++ test/MC/Disassembler/ARM/armv8.4a-trace-t32.txt | 10 ++ test/Transforms/Inline/always-inline.ll | 7 ++ 22 files changed, 340 insertions(+), 53 deletions(-) create mode 100644 test/MC/AArch64/armv8.4a-trace-error.s create mode 100644 test/MC/ARM/armv8.4a-trace-error.s create mode 100644 test/MC/ARM/armv8.4a-trace.s create mode 100644 test/MC/Disassembler/ARM/armv8.4a-trace-a32.txt create mode 100644 test/MC/Disassembler/ARM/armv8.4a-trace-t32.txt