Don't put test cases into regression test suite before the bug is fixed.
[oota-llvm.git] / test / Assembler / 2004-03-07-FunctionAddressAlignment.llx
1 ; RUN: llvm-upgrade < %s | llvm-as | llvm-dis | not grep cast
2 ; All of these should be eliminable
3
4
5 int %foo() {
6         ret int and (int cast (int()* %foo to int), int 1)
7 }
8
9 int %foo2() {
10         ret int and (int 1, int cast (int()* %foo2 to int))
11 }
12
13 bool %foo3() {
14         ret bool cast (bool()* %foo3 to bool)
15 }