1; RUN: llc -filetype=obj -march=mips64el -mcpu=mips64 -disable-mips-delay-filler %s -o - | elf-dump --dump-section-data | FileCheck %s 2 3; Check for N64 relocation production. 4; 5; ModuleID = '../hello.c' 6target datalayout = "e-p:64:64:64-i1:8:8-i8:8:32-i16:16:32-i32:32:32-i64:64:64-f32:32:32-f64:64:64-f128:128:128-v64:64:64-n32" 7target triple = "mips64el-unknown-linux" 8 9@str = private unnamed_addr constant [12 x i8] c"hello world\00" 10 11define i32 @main() nounwind { 12entry: 13; Check that the appropriate relocations were created. 14 15; R_MIPS_GPREL16/R_MIPS_SUB/R_MIPS_HI16 16; CHECK: ('r_type3', 0x05) 17; CHECK-NEXT: ('r_type2', 0x18) 18; CHECK-NEXT: ('r_type', 0x07) 19 20; R_MIPS_GPREL16/R_MIPS_SUB/R_MIPS_LO16 21; CHECK: ('r_type3', 0x06) 22; CHECK-NEXT: ('r_type2', 0x18) 23; CHECK-NEXT: ('r_type', 0x07) 24 25; R_MIPS_GOT_OFST/R_MIPS_NONE/R_MIPS_NONE 26; CHECK: ('r_type3', 0x00) 27; CHECK-NEXT: ('r_type2', 0x00) 28; CHECK-NEXT: ('r_type', 0x14) 29 30; R_MIPS_GOT_OFST/R_MIPS_NONE/R_MIPS_NONE 31; CHECK: ('r_type3', 0x00) 32; CHECK-NEXT: ('r_type2', 0x00) 33; CHECK-NEXT: ('r_type', 0x15) 34 35 %puts = tail call i32 @puts(i8* getelementptr inbounds ([12 x i8]* @str, i64 0, i64 0)) 36 ret i32 0 37 38} 39declare i32 @puts(i8* nocapture) nounwind 40