1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-23 04:52:54 +02:00
llvm-mirror/test/Feature/alias2.ll
Rafael Espindola acdb307db3 [pr19844] Add thread local mode to aliases.
This matches gcc's behavior. It also seems natural given that aliases
contain other properties that govern how it is accessed (linkage,
visibility, dll storage).

Clang still has to be updated to expose this feature to C.

llvm-svn: 209759
2014-05-28 18:15:43 +00:00

23 lines
574 B
LLVM

; RUN: llvm-as < %s | llvm-dis | FileCheck %s
@v1 = global i32 0
; CHECK: @v1 = global i32 0
@v2 = global [1 x i32] zeroinitializer
; CHECK: @v2 = global [1 x i32] zeroinitializer
@v3 = alias i16, i32* @v1
; CHECK: @v3 = alias i16, i32* @v1
@v4 = alias i32, [1 x i32]* @v2
; CHECK: @v4 = alias i32, [1 x i32]* @v2
@v5 = alias addrspace(2) i32, i32* @v1
; CHECK: @v5 = alias addrspace(2) i32, i32* @v1
@v6 = alias i16, i32* @v1
; CHECK: @v6 = alias i16, i32* @v1
@v7 = thread_local(localdynamic) alias i32* @v1
; CHECK: @v7 = thread_local(localdynamic) alias i32* @v1