aboutsummaryrefslogtreecommitdiff
path: root/meta-linaro-toolchain/recipes-devtools/binutils/binutils-2.23.2/tlsdesc_plt-aarch64_be.patch
blob: 6c612b067a75dc259142a11a961752944c4a5e57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
Index: binutils-linaro-2.23.2-2013.10-4/bfd/elf64-aarch64.c
===================================================================
--- binutils-linaro-2.23.2-2013.10-4.orig/bfd/elf64-aarch64.c
+++ binutils-linaro-2.23.2-2013.10-4/bfd/elf64-aarch64.c
@@ -6968,38 +6968,34 @@ elf64_aarch64_finish_dynamic_sections (b
 	    bfd_vma opcode;
 
 	    /* adrp x2, DT_TLSDESC_GOT */
-	    opcode = bfd_get_32 (output_bfd,
-				 htab->root.splt->contents
+	    opcode = bfd_getl32 (htab->root.splt->contents
 				 + htab->tlsdesc_plt + 4);
 	    opcode = reencode_adr_imm
 	      (opcode, (PG (dt_tlsdesc_got) - PG (adrp1_addr)) >> 12);
-	    bfd_put_32 (output_bfd, opcode,
+	    bfd_putl32 (opcode,
 			htab->root.splt->contents + htab->tlsdesc_plt + 4);
 
 	    /* adrp x3, 0 */
-	    opcode = bfd_get_32 (output_bfd,
-				 htab->root.splt->contents
+	    opcode = bfd_getl32 (htab->root.splt->contents
 				 + htab->tlsdesc_plt + 8);
 	    opcode = reencode_adr_imm
 	      (opcode, (PG (pltgot_addr) - PG (adrp2_addr)) >> 12);
-	    bfd_put_32 (output_bfd, opcode,
+	    bfd_putl32 (opcode,
 			htab->root.splt->contents + htab->tlsdesc_plt + 8);
 
 	    /* ldr x2, [x2, #0] */
-	    opcode = bfd_get_32 (output_bfd,
-				 htab->root.splt->contents
+	    opcode = bfd_getl32 (htab->root.splt->contents
 				 + htab->tlsdesc_plt + 12);
 	    opcode = reencode_ldst_pos_imm (opcode,
 					    PG_OFFSET (dt_tlsdesc_got) >> 3);
-	    bfd_put_32 (output_bfd, opcode,
+	    bfd_putl32 (opcode,
 			htab->root.splt->contents + htab->tlsdesc_plt + 12);
 
 	    /* add x3, x3, 0 */
-	    opcode = bfd_get_32 (output_bfd,
-				 htab->root.splt->contents
+	    opcode = bfd_getl32 (htab->root.splt->contents
 				 + htab->tlsdesc_plt + 16);
 	    opcode = reencode_add_imm (opcode, PG_OFFSET (pltgot_addr));
-	    bfd_put_32 (output_bfd, opcode,
+	    bfd_putl32 (opcode,
 			htab->root.splt->contents + htab->tlsdesc_plt + 16);
 	  }
 	}