Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | X86: Do not use llc -march in tests. | Matthias Braun | 2017-08-02 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | `llc -march` is problematic because it only switches the target architecture, but leaves the operating system unchanged. This occasionally leads to indeterministic tests because the OS from LLVM_DEFAULT_TARGET_TRIPLE is used. However we can simply always use `llc -mtriple` instead. This changes all the tests to do this to avoid people using -march when they copy and paste parts of tests. See also the discussion in https://reviews.llvm.org/D35287 llvm-svn: 309774 | ||||
* | 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 | ||||
* | FileCheck-ize and cleanup IR. | Chandler Carruth | 2011-07-02 | 1 | -5/+9 |
| | | | | llvm-svn: 134349 | ||||
* | move tests that depend on the x86 backend out of codegen/generic, | Chris Lattner | 2010-02-09 | 1 | -0/+13 |
and remove a few old and unreduced ones. Fixes PR5624. llvm-svn: 95656 |