aboutsummaryrefslogtreecommitdiffstats
path: root/test/Feature/globalredefinition.ll
blob: 793554a2c79663b0c48e5225c05533ecc60b9ed2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
; Test forward references and redefinitions of globals

%Y = global void()* %X

%A = global int* %B
%B = global int 7
%B = global int 7


declare void %X()

declare void %X()

void %X() {
  ret void
}

declare void %X()