Fix a README item: when doing a comparison with the result
[oota-llvm.git] / test / Transforms / ConstProp / bitcast2.ll
1 ; RUN: opt < %s -instcombine -S | not grep bitcast
2 ; PR2165
3
4 define <1 x i64> @test() {
5   %A = bitcast i64 63 to <1 x i64>
6   ret <1 x i64> %A
7 }
8