2009-09-12 02:01:28 +08:00
|
|
|
; RUN: opt < %s -constprop -S | \
|
2007-04-15 07:04:54 +08:00
|
|
|
; RUN: grep {i32 -1}
|
2009-09-12 02:01:28 +08:00
|
|
|
; RUN: opt < %s -constprop -S | \
|
2007-04-15 07:04:54 +08:00
|
|
|
; RUN: not grep zeroinitializer
|
2006-12-01 13:54:48 +08:00
|
|
|
|
2008-03-01 17:15:35 +08:00
|
|
|
define <4 x i32> @test() {
|
|
|
|
%tmp40 = bitcast <2 x i64> bitcast (<4 x i32> < i32 0, i32 0, i32 -1, i32 0 > to <2 x i64>) to <4 x i32>; <<4 x i32>> [#uses=1]
|
|
|
|
ret <4 x i32> %tmp40
|
2006-12-01 13:54:48 +08:00
|
|
|
}
|
2008-03-01 17:15:35 +08:00
|
|
|
|