aboutsummaryrefslogtreecommitdiff
path: root/tests/cases/dash.ll
blob: 0104cf7cd02329b6a12e27a0cef645b2fbe255db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
; ModuleID = '/tmp/tmpqfApGD/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"

@other-name = alias i32 ()* @main

@.st-r = private unnamed_addr constant [15 x i8] c"hello, world!\0A\00", align 1

define i32 @main() {
entry:
  %ret-val = alloca i32, align 4
  store i32 0, i32* %ret-val
  %aaa = ptrtoint i32 ()* @other-name to i32
  %call = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([15 x i8]* @.st-r, i32 0, i32 0), i32 %aaa)
  ret i32 0
}

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