eliminate the "MBBLabel" MCOperand type, and just use a MCSymbol for
[llvm/avr.git] / test / Transforms / ScalarRepl / load-store-aggregate.ll
blob9ea3895a22e737b9d63cbe7e35b443d48601e5e0
1 ; This testcase shows that scalarrepl is able to replace struct alloca's which
2 ; are directly loaded from or stored to (using the first class aggregates
3 ; feature).
5 ; RUN: opt < %s -scalarrepl -S > %t
6 ; RUN: cat %t | not grep alloca
8 %struct.foo = type { i32, i32 }
10 define i32 @test(%struct.foo* %P) {
11 entry:
12         %L = alloca %struct.foo, align 8                ; <%struct.foo*> [#uses=2]
13         %V = load %struct.foo* %P
14         store %struct.foo %V, %struct.foo* %L
16         %tmp4 = getelementptr %struct.foo* %L, i32 0, i32 0             ; <i32*> [#uses=1]
17         %tmp5 = load i32* %tmp4         ; <i32> [#uses=1]
18         ret i32 %tmp5
21 define %struct.foo @test2(i32 %A, i32 %B) {
22 entry:
23         %L = alloca %struct.foo, align 8                ; <%struct.foo*> [#uses=2]
24         %L.0 = getelementptr %struct.foo* %L, i32 0, i32 0
25         store i32 %A, i32* %L.0
26         %L.1 = getelementptr %struct.foo* %L, i32 0, i32 1
27         store i32 %B, i32* %L.1
28         %V = load %struct.foo* %L
29         ret %struct.foo %V