blob: 66def7f49da23b03f465b073c34f5c06cb89ee34 [file] [log] [blame]
Chris Lattner86851032008-10-16 05:26:51 +00001; RUN: llvm-as < %s | opt -instcombine | llvm-dis | not grep bitcast
2; PR2165
3
4define <1 x i64> @test() {
5 %A = bitcast i64 63 to <1 x i64>
6 ret <1 x i64> %A
7}
8