brintos

brintos / llvm-project-archived public Read only

0
0
Text · 329 B · 169a67c Raw
12 lines · plain
1; RUN: llvm-as < %s | llvm-dis2 3@foo = global <2 x i32> < i32 0, i32 1 >                ; <ptr> [#uses=1]4@bar = external global <2 x i32>                ; <ptr> [#uses=1]5 6define void @main() {7        %t0 = load <2 x i32>, ptr @foo              ; <<2 x i32>> [#uses=1]8        store <2 x i32> %t0, ptr @bar9        ret void10}11 12