Transform (x << (y&31)) -> (x << y). This takes advantage of the fact x86 shift instr...
[oota-llvm.git] / test / CodeGen / CBackend / 2003-10-23-UnusedType.ll
1 ; RUN: llvm-as < %s | llc -march=c
2
3 %A = type { i32, i8*, { i32, i32, i32, i32, i32, i32, i32, i32 }*, i16 }
4
5 define void @test(%A*) {
6         ret void
7 }
8