2009-09-09 01:54:48 +02:00
|
|
|
; RUN: llc < %s -march=x86-64 -mattr=+mmx,+sse2
|
2009-02-20 21:43:02 +01:00
|
|
|
; rdar://6602459
|
|
|
|
|
|
|
|
@g_v1di = external global <1 x i64>
|
|
|
|
|
2009-02-22 09:05:12 +01:00
|
|
|
define void @t1() nounwind {
|
2009-02-20 21:43:02 +01:00
|
|
|
entry:
|
|
|
|
%call = call <1 x i64> @return_v1di() ; <<1 x i64>> [#uses=0]
|
|
|
|
store <1 x i64> %call, <1 x i64>* @g_v1di
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2009-02-23 10:03:22 +01:00
|
|
|
declare <1 x i64> @return_v1di()
|
|
|
|
|
2009-02-22 09:05:12 +01:00
|
|
|
define <1 x i64> @t2() nounwind {
|
|
|
|
ret <1 x i64> <i64 1>
|
|
|
|
}
|
|
|
|
|
2009-02-23 10:03:22 +01:00
|
|
|
define <2 x i32> @t3() nounwind {
|
|
|
|
ret <2 x i32> <i32 1, i32 0>
|
|
|
|
}
|
|
|
|
|
|
|
|
define double @t4() nounwind {
|
|
|
|
ret double bitcast (<2 x i32> <i32 1, i32 0> to double)
|
|
|
|
}
|
|
|
|
|