llvm-6502/test
Evan Cheng e721f5c8d3 Improve codegen for select's:
if (x != 0) x = 1
if (x == 1) x = 1

Previous codegen looks like this:
        mov     r1, r0
        cmp     r1, #1
        mov     r0, #0
        moveq   r0, #1

The naive lowering select between two different values. It should recognize the
test is equality test so it's more a conditional move rather than a select:
        cmp     r0, #1
        movne   r0, #0

rdar://9758317


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@135017 91177308-0d34-0410-b5e6-96231b3b80d8
2011-07-13 00:42:17 +00:00
..
Analysis Move the loads after the calls so that the fix for 2011-07-09 23:53:58 +00:00
Archive Avoid writing to an arbitrary filename during the test run by writing to 2011-07-02 20:43:18 +00:00
Assembler Land the long talked about "type system rewrite" patch. This 2011-07-09 17:41:24 +00:00
Bindings/Ocaml Remove tests for APIs that were removed. 2011-07-09 18:55:51 +00:00
Bitcode
BugPoint
CodeGen Improve codegen for select's: 2011-07-13 00:42:17 +00:00
DebugInfo
ExecutionEngine
Feature Land the long talked about "type system rewrite" patch. This 2011-07-09 17:41:24 +00:00
FrontendAda
FrontendC Land the long talked about "type system rewrite" patch. This 2011-07-09 17:41:24 +00:00
FrontendC++
FrontendFortran
FrontendObjC
FrontendObjC++
Integer
lib
Linker Land the long talked about "type system rewrite" patch. This 2011-07-09 17:41:24 +00:00
LLVMC
MC Add check for predicate w/o S bit. 2011-07-12 16:25:04 +00:00
Object
Other Land the long talked about "type system rewrite" patch. This 2011-07-09 17:41:24 +00:00
Scripts
TableGen
Transforms Don't duplicate the work done by a gep into a "bitcast" if the gep has 2011-07-11 03:43:47 +00:00
Unit
Verifier Land the long talked about "type system rewrite" patch. This 2011-07-09 17:41:24 +00:00
CMakeLists.txt
lit.cfg
lit.site.cfg.in
Makefile
Makefile.tests
site.exp.in
TestRunner.sh