mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-28 19:31:58 +00:00
11 lines
273 B
LLVM
11 lines
273 B
LLVM
|
; This one fails because the LLVM runtime is allowing two null pointers of
|
||
|
; the same type to be created!
|
||
|
|
||
|
; RUN: echo "%S = type { %T*} %T = type opaque" | as > Output/%s.2.bc
|
||
|
; RUN: as < %s > Output/%s.1.bc
|
||
|
; RUN: link Output/%s.[12].bc
|
||
|
|
||
|
%S = type { %T* }
|
||
|
%T = type int
|
||
|
|