brintos

brintos / llvm-project-archived public Read only

0
0
Text · 319 B · 69944b8 Raw
15 lines · plain
1; RUN: llvm-link -S -o - %p/pr22807.ll %p/Inputs/pr22807.ll 2>&1 | FileCheck %s2 3; CHECK: %struct.B = type { %struct.A }4; CHECK: %struct.A = type opaque5; CHECK: @g = external global %struct.B6 7%struct.B = type { %struct.A }8%struct.A = type opaque9 10@g = external global %struct.B11 12define ptr @test() {13  ret ptr @g14}15