blob: 3e54d0f26e4d2314d60af865c86a307cb5fedf25 [file] [log] [blame]
Krzysztof Parzyszek046090d2018-03-12 14:01:28 +00001; RUN: llc -march=hexagon -O2 -relocation-model=pic < %s | FileCheck %s
2;
3; CHECK: r{{[0-9]+}} = add({{pc|PC}},##g2@PCREL)
4
5@g0 = hidden global i32 10, align 4
6@g1 = private unnamed_addr constant [4 x i8] c"%d\0A\00", align 1
7@g2 = internal global i32* @g0, align 4
8
9; Function Attrs: nounwind
10declare i32 @f0(i8*, ...) #0
11
12; Function Attrs: nounwind
13define i32 @f1() #0 {
14b0:
15 %v0 = alloca i32, align 4
16 store i32 10, i32* @g0, align 4
17 %v1 = load i32*, i32** @g2, align 4
18 %v2 = load i32, i32* %v1, align 4
19 %v3 = call i32 (i8*, ...) @f0(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @g1, i32 0, i32 0), i32 %v2)
20 %v4 = load i32, i32* %v0
21 ret i32 %v4
22}
23
24attributes #0 = { nounwind }