brintos

brintos / llvm-project-archived public Read only

0
0
Text · 472 B · 76fb5a2 Raw
17 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@X = global i32 4, align 16             ; <ptr> [#uses=0]6 7define ptr @test() align 32 {8        %X = alloca i32, align 4                ; <ptr> [#uses=1]9        %Y = alloca i32, i32 42, align 16               ; <ptr> [#uses=0]10        %Z = alloca i32         ; <ptr> [#uses=0]11        ret ptr %X12}13define void @test3() alignstack(16) {14        ret void15}16 17