llvm-6502/test
Dinesh Dwivedi c469e543a0 Added inst combine transforms for single bit tests from Chris's note
if ((x & C) == 0) x |= C becomes x |= C
if ((x & C) != 0) x ^= C becomes x &= ~C
if ((x & C) == 0) x ^= C becomes x |= C
if ((x & C) != 0) x &= ~C becomes x &= ~C
if ((x & C) == 0) x &= ~C becomes nothing

Differential Revision: http://reviews.llvm.org/D3777



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@210006 91177308-0d34-0410-b5e6-96231b3b80d8
2014-06-02 07:24:36 +00:00
..
Analysis
Assembler
Bindings
Bitcode
BugPoint
CodeGen ARMEB: Fix function return type f64 2014-06-01 09:30:52 +00:00
DebugInfo DebugInfo: Assert that DbgVariables have associated DIEs 2014-06-01 03:38:13 +00:00
ExecutionEngine
Feature
FileCheck
Instrumentation [TSan] Fixup a test case after r209939 2014-05-31 00:26:03 +00:00
Integer
JitListener
Linker
LTO
MC
Object [yaml2obj] Add new command line option -docnum. 2014-05-31 04:51:07 +00:00
Other
TableGen
tools
Transforms Added inst combine transforms for single bit tests from Chris's note 2014-06-02 07:24:36 +00:00
Unit
Verifier
YAMLParser
.clang-format
CMakeLists.txt
lit.cfg
lit.site.cfg.in
Makefile
Makefile.tests
TestRunner.sh