brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.0 KiB · 0405320 Raw
23 lines · plain
1; RUN: llvm-as < %s | llvm-dis > %t1.ll2; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll3; RUN: diff %t1.ll %t2.ll4 5        %inners = type { float, { i8 } }6        %struct = type { i32, %inners, i64 }7 8define i32 @testfunction(i32 %i0, i32 %j0) {9        alloca i8, i32 5                ; <i8*>:1 [#uses=0]10        %ptr = alloca i32               ; <i32*> [#uses=2]11        store i32 3, i32* %ptr12        %val = load i32, i32* %ptr           ; <i32> [#uses=0]13        %sptr = alloca %struct          ; <%struct*> [#uses=2]14        %nsptr = getelementptr %struct, %struct* %sptr, i64 0, i32 1             ; <%inners*> [#uses=1]15        %ubsptr = getelementptr %inners, %inners* %nsptr, i64 0, i32 1           ; <{ i8 }*> [#uses=1]16        %idx = getelementptr { i8 }, { i8 }* %ubsptr, i64 0, i32 0              ; <i8*> [#uses=1]17        store i8 4, i8* %idx18        %fptr = getelementptr %struct, %struct* %sptr, i64 0, i32 1, i32 0               ; <float*> [#uses=1]19        store float 4.000000e+00, float* %fptr20        ret i32 321}22 23