blob: 39435706934f8efdaf1a19b2e544091937eeb3fd [file] [log] [blame]
Tanya Lattner2ad38be2008-02-19 01:44:26 +00001; RUN: llvm-as < %s | llvm-dis | llvm-as > /dev/null
Chris Lattner0c97a622004-08-20 08:34:27 +00002
Tanya Lattner2ad38be2008-02-19 01:44:26 +00003 %v4f = type <4 x float>
4@foo = external global %v4f ; <%v4f*> [#uses=1]
5@bar = external global %v4f ; <%v4f*> [#uses=1]
Chris Lattner0c97a622004-08-20 08:34:27 +00006
Tanya Lattner2ad38be2008-02-19 01:44:26 +00007define void @main() {
8 br label %A
Chris Lattner0c97a622004-08-20 08:34:27 +00009
Tanya Lattner2ad38be2008-02-19 01:44:26 +000010C: ; preds = %B
11 store %v4f %t2, %v4f* @bar
12 ret void
Chris Lattner0c97a622004-08-20 08:34:27 +000013
Tanya Lattner2ad38be2008-02-19 01:44:26 +000014B: ; preds = %A
Dan Gohmanae3a0be2009-06-04 22:49:04 +000015 %t2 = fadd %v4f %t0, %t0 ; <%v4f> [#uses=1]
Tanya Lattner2ad38be2008-02-19 01:44:26 +000016 br label %C
Chris Lattner0c97a622004-08-20 08:34:27 +000017
Tanya Lattner2ad38be2008-02-19 01:44:26 +000018A: ; preds = %0
19 %t0 = load %v4f* @foo ; <%v4f> [#uses=2]
20 br label %B
Chris Lattner0c97a622004-08-20 08:34:27 +000021}
Tanya Lattner2ad38be2008-02-19 01:44:26 +000022