brintos

brintos / llvm-project-archived public Read only

0
0
Text · 343 B · 3fc49b5 Raw
17 lines · plain
1; RUN: llvm-link -S %s %p/Inputs/type-unique-opaque.ll | FileCheck %s2 3; Test that a failed attempt at merging %u2 and %t2 (for the other file) will4; not cause %u and %t to get merged.5 6; CHECK: %u = type opaque7; CHECK: external global %u8 9%u = type opaque10%u2 = type { %u, i8 }11 12@g = external global %u13 14define ptr @test() {15  ret ptr @g16}17