1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00
llvm-mirror/test/Linker/unnamed-addr1-b.ll
Rafael Espindola 0946a33225 Make this input file pass the verifier.
This was not noticed before because llvm-link only runs the verifier on the
result and these globals were not present in the result.

llvm-svn: 217450
2014-09-09 15:40:12 +00:00

27 lines
774 B
LLVM

; This file is for use with unnamed-addr1-a.ll
; RUN: true
@global-c = common unnamed_addr global i32 0
@global-d = unnamed_addr global i32 42
@global-e = unnamed_addr global i32 42
@global-f = unnamed_addr global i32 42
@alias-a = unnamed_addr alias i32* @global-f
@alias-b = unnamed_addr alias i32* @global-f
define weak void @func-c() unnamed_addr { ret void }
define weak void @func-d() unnamed_addr { ret void }
define weak void @func-e() unnamed_addr { ret void }
@global-g = common global i32 0
@global-h = global i32 42
@global-i = global i32 42
@global-j = global i32 42
@alias-c = alias i32* @global-f
@alias-d = alias i32* @global-f
define weak void @func-g() { ret void }
define weak void @func-h() { ret void }
define weak void @func-i() { ret void }