Mercurial > hg > CbC > CbC_llvm
annotate test/Linker/pr22807.ll @ 100:7d135dc70f03 LLVM 3.9
LLVM 3.9
author | Miyagi Mitsuki <e135756@ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 26 Jan 2016 22:53:40 +0900 |
parents | afa8332a0e37 |
children |
rev | line source |
---|---|
95 | 1 ; RUN: llvm-link -S -o - %p/pr22807.ll %p/Inputs/pr22807-1.ll %p/Inputs/pr22807-2.ll | FileCheck %s |
2 | |
3 ; CHECK-NOT: type | |
4 ; CHECK: %struct.B = type { %struct.A* } | |
5 ; CHECK-NEXT: %struct.A = type { %struct.B* } | |
6 ; CHECK-NOT: type | |
7 | |
8 %struct.B = type { %struct.A* } | |
9 %struct.A = type opaque | |
10 | |
11 define i32 @baz(%struct.B* %BB) { | |
12 ret i32 0 | |
13 } |