pr22807.ll 330 B

12345678910111213
  1. ; RUN: llvm-link -S -o - %p/pr22807.ll %p/Inputs/pr22807-1.ll %p/Inputs/pr22807-2.ll | FileCheck %s
  2. ; CHECK-NOT: type
  3. ; CHECK: %struct.B = type { %struct.A* }
  4. ; CHECK-NEXT: %struct.A = type { %struct.B* }
  5. ; CHECK-NOT: type
  6. %struct.B = type { %struct.A* }
  7. %struct.A = type opaque
  8. define i32 @baz(%struct.B* %BB) {
  9. ret i32 0
  10. }