mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
1876abe63e
are invalid). Fixes a crash on array1.C from the GCC testsuite when compiled with dragonegg. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@147946 91177308-0d34-0410-b5e6-96231b3b80d8
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
|
|
}
|