1; RUN: opt < %s -constprop -S | FileCheck %s
2; PR2165
3
4define <1 x i64> @test1() {
5  %A = bitcast i64 63 to <1 x i64>
6  ret <1 x i64> %A
7; CHECK-LABEL: @test1(
8; CHECK: ret <1 x i64> <i64 63>
9}
10
11