1; RUN: llc -filetype=obj -march=hexagon %s -o - | llvm-objdump -r - | FileCheck %s 2 3; CHECK: RELOCATION RECORDS FOR [.rela.text]: 4; CHECK: 00000000 R_HEX_B22_PCREL printf 5; CHECK: 00000004 R_HEX_32_6_X .rodata.str1.1 6; CHECK: 00000008 R_HEX_6_X .rodata.str1.1 7 8target triple = "hexagon-unknown--elf" 9 10@.str = private unnamed_addr constant [10 x i8] c"cxfir.log\00", align 1 11 12declare i32 @printf(i8*, ...) #1 13 14; Function Attrs: nounwind 15define i32 @main() #0 { 16entry: 17 %call = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([10 x i8], [10 x i8]* @.str, i32 0, i32 0)) 18 ret i32 0 19} 20 21attributes #0 = { nounwind "less-precise-fpmad"="false" "no-frame-pointer-elim"="true" "no-frame-pointer-elim-non-leaf" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" } 22attributes #1 = { "less-precise-fpmad"="false" "no-frame-pointer-elim"="true" "no-frame-pointer-elim-non-leaf" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" } 23 24