blob: 9835199ba7db0b7c5c708fc4b5871b143755b792 [file] [log] [blame]
Reid Spencer69ccadd2006-12-02 04:23:10 +00001; RUN: llvm-upgrade < %s | llvm-as | llvm-dis
Reid Spencer442729a2004-08-20 06:06:43 +00002
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 %t2 = add <4 x float> %t0, %t0
12 %t3 = select bool false, <4 x float> %t0, <4 x float> %t2
13 store <4 x float> %t3, <4 x float>* %bar
14 ret void
15}