Move a test from cast-set to a new bit-tracking.ll file. Update file comments
[oota-llvm.git] / test / Transforms / InstCombine / bit-tracking.ll
1 ; This file contains various testcases that require tracking whether bits are
2 ; set or cleared by various instructions.
3
4 ; RUN: llvm-as < %s | opt -instcombine | llvm-dis | not grep %ELIM
5
6 ; test1 - Eliminating the casts in this testcase (by narrowing the AND 
7 ; operation) allows instcombine to realize the function always returns false.
8 ;
9 bool %test1(int %A, int %B) {
10         %C1 = setlt int %A, %B
11         %ELIM1 = cast bool %C1 to uint
12         %C2 = setgt int %A, %B
13         %ELIM2 = cast bool %C2 to uint
14         %C3 = and uint %ELIM1, %ELIM2
15         %ELIM3 = cast uint %C3 to bool
16         ret bool %ELIM3
17 }
18