blob: 248f3d8490ed392eb68329ca56cae70d4bb959b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
; RUN: llvm-as < %s | opt -inline -disable-output
implementation
int %main() {
entry:
invoke void %__main( )
to label %Call2Invoke except label %LongJmpBlkPre
Call2Invoke:
br label %LongJmpBlkPre
LongJmpBlkPre:
%i.3 = phi uint [ 0, %entry ], [ 0, %Call2Invoke ] ; <uint> [#uses=0]
ret int 0
}
void %__main() {
call void %__llvm_getGlobalCtors( )
call void %__llvm_getGlobalDtors( )
ret void
}
declare void %__llvm_getGlobalCtors()
declare void %__llvm_getGlobalDtors()
|