summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/AVR/features
Commit message (Collapse)AuthorAgeFilesLines
* [AVR] Fix the 'avr-tiny.ll' and 'avr25.ll' subtarget feature testsDylan McKay2019-06-122-5/+5
| | | | | | | | | | | | | | | | | | | When these tests were originally written, the middle end would introduce an unnecessary copy from r24:r23->GPR16->r24:r23, and these tests mistakenly relied on it. The most optimal codegen for the functions in the test cases before this patch would be NOPs. This is because the first i16 argument always gets the same register allocation as an i16 return value in the AVR calling convention. These tests broke in r362963 when the codegen was improved and the redundant copy was eliminated. After this, the test functions were lowered to their optimal form - a 'ret' and nothing else. This patch prepends an extra i16 operand to each of the test functions so that a 16-bit copy must be inserted for the program to be correct. llvm-svn: 363131
* [AVR] Add a selection of CodeGen testsDylan McKay2016-11-092-0/+17
Summary: This adds all of the CodeGen tests which currently pass. Reviewers: arsenm, kparzysz Subscribers: japaric, wdng Differential Revision: https://reviews.llvm.org/D26388 llvm-svn: 286418
OpenPOWER on IntegriCloud