aboutsummaryrefslogtreecommitdiff
path: root/tests/cases/entry3.ll
blob: 822e6b7feefb88bd6561b24ae39284f13d7ebc91 (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
27
28
29
30
31
32
33
34
35
36
; ModuleID = '/tmp/tmpKnA2D3/a.out.bc'
target datalayout = "e-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-p:32:32:32-v128:32:128-n32-S128"
target triple = "asmjs-unknown-emscripten"

@.str = private unnamed_addr constant [11 x i8] c"getgid=%d\0A\00", align 1
@.str1 = private unnamed_addr constant [6 x i8] c"f=%d\0A\00", align 1

define internal i32 @_Z1fii(i32, i32) noinline {
entry:
  %a3 = tail call i32 @getgid()
  %a4 = icmp eq i32 %a3, 0
  br i1 %a4, label %cond.b, label %cond.a

cond.a:
  %a6 = tail call i32 @getgid()
  br label %cond.end

cond.b:
  br label %cond.end

cond.end:
  %.0 = phi i32 [ 0, %cond.b ], [ 1, %cond.a ]
  ret i32 %.0
}

declare i32 @getgid()

define i32 @main() {
  %1 = tail call i32 @getgid()
  %2 = tail call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([11 x i8]* @.str, i32 0, i32 0), i32 %1)
  %3 = tail call i32 @_Z1fii(i32 undef, i32 undef)
  %4 = tail call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([6 x i8]* @.str1, i32 0, i32 0), i32 %3)
  ret i32 0
}

declare i32 @printf(i8* nocapture, ...) nounwind