Home | History | Annotate | Download | only in Hexagon
      1 ; 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
     10 declare i32 @f0(i8*, ...) #0
     11 
     12 ; Function Attrs: nounwind
     13 define i32 @f1() #0 {
     14 b0:
     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 
     24 attributes #0 = { nounwind }
     25