mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@217450 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7b1723dc85
commit
06a533caaa
@ -1,7 +1,7 @@
|
||||
; This file is for use with unnamed-addr1-a.ll
|
||||
; RUN: true
|
||||
|
||||
@global-c = common unnamed_addr global i32 42
|
||||
@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
|
||||
@ -13,7 +13,7 @@ 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 42
|
||||
@global-g = common global i32 0
|
||||
@global-h = global i32 42
|
||||
@global-i = global i32 42
|
||||
@global-j = global i32 42
|
||||
|
Loading…
Reference in New Issue
Block a user