blob: 4485543708f000b564d467e2592617de0c2a9176 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; RUN: llvm-upgrade < %s | llvm-as | llvm-dis
2
3%foo = uninitialized global <4 x float>;
4%bar = uninitialized global <4 x float>;
5
6implementation ; Functions:
7
8void %main()
9{
10 %t0 = load <4 x float>* %foo
11 %t1 = add <4 x float> %t0, %t0
12 %t2 = select bool true, <4 x float> %t0, <4 x float> %t1
13 store <4 x float> %t2, <4 x float>* %bar
14 ret void
Dan Gohman8c89a502007-08-15 13:36:28 +000015}