mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
b545beb54e
are invalid). Fixes a crash on array1.C from the GCC testsuite when compiled with dragonegg. llvm-svn: 147946
13 lines
277 B
LLVM
13 lines
277 B
LLVM
; RUN: opt < %s -instcombine -disable-output
|
|
|
|
%opaque_struct = type opaque
|
|
|
|
@G = external global [0 x %opaque_struct]
|
|
|
|
declare void @foo(%opaque_struct*)
|
|
|
|
define void @bar() {
|
|
call void @foo(%opaque_struct* bitcast ([0 x %opaque_struct]* @G to %opaque_struct*))
|
|
ret void
|
|
}
|