mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-17 03:30:28 +00:00
8 lines
230 B
LLVM
8 lines
230 B
LLVM
|
; RUN: not llvm-link %s %S/Inputs/cycle.ll 2>&1 | FileCheck %s
|
||
|
; RUN: not llvm-link %S/Inputs/cycle.ll %s 2>&1 | FileCheck %s
|
||
|
|
||
|
; CHECK: Linking these modules creates an alias cycle
|
||
|
|
||
|
@foo = weak global i32 0
|
||
|
@bar = alias i32* @foo
|