| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | [X86][SSE] Regenerate test. | Simon Pilgrim | 2016-12-07 | 1 | -3/+13 |
| | | | | | llvm-svn: 288906 | ||||
| * | [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 | ||||
| * | Update tests to use sse4.2 instead of sse42. | Rafael Espindola | 2013-08-23 | 1 | -1/+1 |
| | | | | | llvm-svn: 189145 | ||||
| * | Replace more uses of sse41 with sse4.1. | Rafael Espindola | 2013-08-23 | 1 | -1/+1 |
| | | | | | | | | llc using the host cpu features and *waning* on unknown features is probably not a good thing :-( llvm-svn: 189144 | ||||
| * | Convert CodeGen/*/*.ll tests to use the new CHECK-LABEL for easier ↵ | Stephen Lin | 2013-07-13 | 1 | -1/+1 |
| | | | | | | | | | | | 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 | ||||
| * | Make sure DAGCombiner doesn't introduce multiple loads from the same memory ↵ | Eli Friedman | 2011-12-26 | 1 | -0/+16 |
| location. PR10747, part 2. llvm-svn: 147283 | |||||

