mirror of
https://github.com/RPCS3/llvm.git
synced 2024-11-30 15:10:30 +00:00
e482a05c06
The goal is to simplify the semantic model for clients of IRMover. Differential Revision: https://reviews.llvm.org/D29435 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@293864 91177308-0d34-0410-b5e6-96231b3b80d8
8 lines
267 B
LLVM
8 lines
267 B
LLVM
; RUN: llvm-link %s %p/available_externally_b.ll -S -o - | FileCheck %s
|
|
; RUN: llvm-link %s -S -o - | FileCheck --check-prefix=AE-ONLY %s
|
|
|
|
@foo = available_externally unnamed_addr constant i32 0
|
|
|
|
; CHECK: @foo = hidden unnamed_addr constant i32 0
|
|
; AE-ONLY-NOT: @foo
|