summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/ARM/large-stack.ll
Commit message (Collapse)AuthorAgeFilesLines
* [opaque pointer type] Add textual IR support for explicit type parameter to ↵David Blaikie2015-02-271-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | load instruction Essentially the same as the GEP change in r230786. A similar migration script can be used to update test cases, though a few more test case improvements/changes were required this time around: (r229269-r229278) import fileinput import sys import re pat = re.compile(r"((?:=|:|^)\s*load (?:atomic )?(?:volatile )?(.*?))(| addrspace\(\d+\) *)\*($| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$)") for line in sys.stdin: sys.stdout.write(re.sub(pat, r"\1, \2\3*\4", line)) Reviewers: rafael, dexonsmith, grosser Differential Revision: http://reviews.llvm.org/D7649 llvm-svn: 230794
* ARM: fixup more tests to specify the target more explicitlySaleem Abdulrasool2014-04-031-1/+1
| | | | | | | | | | | | | This changes the tests that were targeting ARM EABI to explicitly specify the environment rather than relying on the default. This breaks with the new Windows on ARM support when running the tests on Windows where the default environment is no longer EABI. Take the opportunity to avoid a pointless redirect (helps when trying to debug with providing a command line invocation which can be copy and pasted) and removing a few greps in favour of FileCheck. llvm-svn: 205541
* Eliminate more uses of llvm-as and llvm-dis.Dan Gohman2009-09-091-1/+1
| | | | llvm-svn: 81293
* Move thumb and thumb2 tests into separate directories.Evan Cheng2009-06-241-1/+0
| | | | llvm-svn: 74068
* Convert tests using "| wc -l | grep ..." to use the count script.Dan Gohman2007-08-151-1/+1
| | | | llvm-svn: 41097
* For PR1319: Upgrade to use new test harnessReid Spencer2007-04-151-4/+2
| | | | llvm-svn: 36076
* -march=arm -enable-thumb => -march=thumbEvan Cheng2007-02-231-2/+2
| | | | llvm-svn: 34522
* My mistake, my environment wasn't up to date. This passes now.Reid Spencer2007-02-011-1/+0
| | | | llvm-svn: 33769
* XFAIL this on x86 linux as it continues to fail.Reid Spencer2007-02-011-1/+3
| | | | llvm-svn: 33768
* Combine two tests.Evan Cheng2007-01-301-1/+11
| | | | llvm-svn: 33668
* For PR761:Reid Spencer2007-01-261-2/+2
| | | | | | | | | | | | | | Remove "target endian/pointersize" or add "target datalayout" to make the test parse properly or set the datalayout because defaults changes. For PR645: Make global names use the @ prefix. For llvm-upgrade changes: Fix test cases or completely remove use of llvm-upgrade for test cases that cannot survive the new renaming or upgrade capabilities. llvm-svn: 33533
* ARM test cases contributed by Apple.Evan Cheng2007-01-191-0/+12
llvm-svn: 33354
OpenPOWER on IntegriCloud