| 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 | -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 | ||||
| * | Convert CodeGen/*/*.ll tests to use the new CHECK-LABEL for easier ↵ | Stephen Lin | 2013-07-13 | 1 | -3/+3 |
| | | | | | | | | | | | 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 a batch of x86 tests to be coalescer independent. | Jakob Stoklund Olesen | 2011-05-04 | 1 | -5/+5 |
| | | | | | | | | | Most of these tests require a single mov instruction that can come either before or after a 2-addr instruction. -join-physregs changes the behavior, but the results are equivalent. llvm-svn: 130891 | ||||
| * | Relax expressions and add explicit triplets -linux and -win32. | NAKAMURA Takumi | 2011-02-22 | 1 | -6/+7 |
| | | | | | llvm-svn: 126214 | ||||
| * | cleanup | Chris Lattner | 2010-03-05 | 1 | -6/+6 |
| | | | | | llvm-svn: 97790 | ||||
| * | Make this test more portable. | Dan Gohman | 2010-01-04 | 1 | -1/+1 |
| | | | | | llvm-svn: 92514 | ||||
| * | Add some tests and update an existing test to reflect recent | Dan Gohman | 2010-01-04 | 1 | -0/+56 |
| x86 isel peeps. llvm-svn: 92509 | |||||

