This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from fb82552 X86: Simplify X86ISD::Wrapper operand checks. NFCI. new 9991c32 Fix "isn't a prototype" warning new d2c33c4 [AVR] Add the pseudo instruction expansion pass
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/AVR/AVRExpandPseudoInsts.cpp | 1431 +++++++++++++++++++++++++ lib/Target/AVR/AVRTargetMachine.cpp | 2 +- lib/Target/AVR/CMakeLists.txt | 1 + test/CodeGen/AVR/add.ll | 93 ++ test/CodeGen/AVR/alloca.ll | 84 ++ test/CodeGen/AVR/and.ll | 80 ++ test/CodeGen/AVR/atomics/fence.ll | 13 + test/CodeGen/AVR/atomics/load16.ll | 137 +++ test/CodeGen/AVR/atomics/load8.ll | 124 +++ test/CodeGen/AVR/atomics/store.ll | 37 + test/CodeGen/AVR/atomics/store16.ll | 25 + test/CodeGen/AVR/brind.ll | 20 + test/CodeGen/AVR/call.ll | 211 ++++ test/CodeGen/AVR/cmp.ll | 148 +++ test/CodeGen/AVR/com.ll | 40 + test/CodeGen/AVR/directmem.ll | 345 ++++++ test/CodeGen/AVR/dynalloca.ll | 78 ++ test/CodeGen/AVR/eor.ll | 92 ++ test/CodeGen/AVR/error-srcreg-destreg-same.ll | 56 + test/CodeGen/AVR/expand-integer-failure.ll | 23 + test/CodeGen/AVR/frame.ll | 65 ++ test/CodeGen/AVR/high-pressure-on-ptrregs.ll | 1 + test/CodeGen/AVR/inline-asm.ll | 337 ++++++ test/CodeGen/AVR/interrupts.ll | 33 + test/CodeGen/AVR/io.ll | 97 ++ test/CodeGen/AVR/lit.local.cfg | 24 + test/CodeGen/AVR/load.ll | 142 +++ test/CodeGen/AVR/or.ll | 80 ++ test/CodeGen/AVR/progmem.ll | 70 ++ test/CodeGen/AVR/return.ll | 142 +++ test/CodeGen/AVR/sext.ll | 29 + test/CodeGen/AVR/store.ll | 130 +++ test/CodeGen/AVR/sub.ll | 92 ++ test/CodeGen/AVR/varargs.ll | 59 + test/CodeGen/AVR/xor.ll | 41 + test/CodeGen/AVR/zext.ll | 31 + tools/llvm-c-test/llvm-c-test.h | 4 +- 37 files changed, 4414 insertions(+), 3 deletions(-) create mode 100644 lib/Target/AVR/AVRExpandPseudoInsts.cpp create mode 100644 test/CodeGen/AVR/add.ll create mode 100644 test/CodeGen/AVR/alloca.ll create mode 100644 test/CodeGen/AVR/and.ll create mode 100644 test/CodeGen/AVR/atomics/fence.ll create mode 100644 test/CodeGen/AVR/atomics/load16.ll create mode 100644 test/CodeGen/AVR/atomics/load8.ll create mode 100644 test/CodeGen/AVR/atomics/store.ll create mode 100644 test/CodeGen/AVR/atomics/store16.ll create mode 100644 test/CodeGen/AVR/brind.ll create mode 100644 test/CodeGen/AVR/call.ll create mode 100644 test/CodeGen/AVR/cmp.ll create mode 100644 test/CodeGen/AVR/com.ll create mode 100644 test/CodeGen/AVR/directmem.ll create mode 100644 test/CodeGen/AVR/dynalloca.ll create mode 100644 test/CodeGen/AVR/eor.ll create mode 100644 test/CodeGen/AVR/error-srcreg-destreg-same.ll create mode 100644 test/CodeGen/AVR/expand-integer-failure.ll create mode 100644 test/CodeGen/AVR/frame.ll create mode 100644 test/CodeGen/AVR/inline-asm.ll create mode 100644 test/CodeGen/AVR/interrupts.ll create mode 100644 test/CodeGen/AVR/io.ll create mode 100644 test/CodeGen/AVR/load.ll create mode 100644 test/CodeGen/AVR/or.ll create mode 100644 test/CodeGen/AVR/progmem.ll create mode 100644 test/CodeGen/AVR/return.ll create mode 100644 test/CodeGen/AVR/sext.ll create mode 100644 test/CodeGen/AVR/store.ll create mode 100644 test/CodeGen/AVR/sub.ll create mode 100644 test/CodeGen/AVR/varargs.ll create mode 100644 test/CodeGen/AVR/xor.ll create mode 100644 test/CodeGen/AVR/zext.ll