Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [opaque pointer type] Add textual IR support for explicit type parameter to ↵ | David Blaikie | 2015-02-27 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | 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 explicitly | Saleem Abdulrasool | 2014-04-03 | 1 | -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 | ||||
* | Convert CodeGen/*/*.ll tests to use the new CHECK-LABEL for easier ↵ | Stephen Lin | 2013-07-13 | 1 | -2/+2 |
| | | | | | | | | | | debugging. No functionality change and all tests pass after conversion. This was done with the following sed invocation to catch label lines demarking function boundaries: sed -i '' "s/^;\( *\)\([A-Z0-9_]*\):\( *\)test\([A-Za-z0-9_-]*\):\( *\)$/;\1\2-LABEL:\3test\4:\5/g" test/CodeGen/*/*.ll which was written conservatively to avoid false positives rather than false negatives. I scanned through all the changes and everything looks correct. llvm-svn: 186258 | ||||
* | Fix the rest of the ARM failures by converting them to FileCheck. | Bob Wilson | 2009-10-27 | 1 | -4/+5 |
| | | | | llvm-svn: 85208 | ||||
* | Eliminate more uses of llvm-as and llvm-dis. | Dan Gohman | 2009-09-09 | 1 | -2/+2 |
| | | | | llvm-svn: 81293 | ||||
* | Remove llvm-upgrade. | Tanya Lattner | 2008-02-17 | 1 | -15/+15 |
| | | | | llvm-svn: 47238 | ||||
* | Convert tests using "| wc -l | grep ..." to use the count script. | Dan Gohman | 2007-08-15 | 1 | -2/+2 |
| | | | | llvm-svn: 41097 | ||||
* | For PR1319: Upgrade to use new test harness | Reid Spencer | 2007-04-15 | 1 | -3/+4 |
| | | | | llvm-svn: 36076 | ||||
* | ARM test cases contributed by Apple. | Evan Cheng | 2007-01-19 | 1 | -0/+20 |
llvm-svn: 33354 |