mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
2e7290e23d
We would set the body of a struct type (therefore making it non-opaque) but were forgetting to move it to the non-opaque set. Fixes pr22807. llvm-svn: 231442
7 lines
105 B
LLVM
7 lines
105 B
LLVM
%struct.A = type { %struct.B* }
|
|
%struct.B = type opaque
|
|
|
|
define i32 @bar(%struct.A* %A) {
|
|
ret i32 0
|
|
}
|