Fix PR3335 by not turning a store to one address space into a store to another.
[oota-llvm.git] / test / Transforms / ConstProp / bitcast2.ll
1 ; RUN: llvm-as < %s | opt -instcombine | llvm-dis | 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