blob: 5ee3d6cbe643da77db76d2fdef98bb31e0bbc2a1 [file] [log] [blame]
Eli Friedmanba7dd482008-02-13 06:55:57 +00001; RUN: llvm-as < %s | opt -gvn | llvm-dis | not grep load
Eli Friedmane2ea35b2008-02-13 07:56:04 +00002; PR1996
Eli Friedmanba7dd482008-02-13 06:55:57 +00003
4%struct.anon = type { i32, i8, i8, i8, i8 }
5
6define i32 @a() {
7entry:
8 %c = alloca %struct.anon ; <%struct.anon*> [#uses=2]
9 %tmp = getelementptr %struct.anon* %c, i32 0, i32 0 ; <i32*> [#uses=1]
10 %tmp1 = getelementptr i32* %tmp, i32 1 ; <i32*> [#uses=2]
11 %tmp2 = load i32* %tmp1, align 4 ; <i32> [#uses=1]
12 %tmp3 = or i32 %tmp2, 11 ; <i32> [#uses=1]
13 %tmp4 = and i32 %tmp3, -21 ; <i32> [#uses=1]
14 store i32 %tmp4, i32* %tmp1, align 4
15 %call = call i32 (...)* @x( %struct.anon* %c ) ; <i32> [#uses=0]
16 ret i32 undef
17}
18
19
20declare i32 @x(...)