blob: 53239c7e4fe08e80bc9a2f360a1fd807a24b2372 [file] [log] [blame]
Chris Lattner2fe9b6a2010-11-14 07:03:38 +00001; RUN: opt < %s -constprop -S | FileCheck %s
Chris Lattner86851032008-10-16 05:26:51 +00002; PR2165
3
Chris Lattner2fe9b6a2010-11-14 07:03:38 +00004define <1 x i64> @test1() {
Chris Lattner86851032008-10-16 05:26:51 +00005 %A = bitcast i64 63 to <1 x i64>
6 ret <1 x i64> %A
Chris Lattner2fe9b6a2010-11-14 07:03:38 +00007; CHECK: @test1
8; CHECK: ret <1 x i64> <i64 63>
Chris Lattner86851032008-10-16 05:26:51 +00009}
10