Yet more signed overflow fixes
[deliverable/binutils-gdb.git] / bfd / elfxx-mips.c
index b1f83a0545d013ca27d79f7f046ab580921d842d..3656046eea4f43e48836a53abf7719d7a7f07ca2 100644 (file)
@@ -6602,7 +6602,7 @@ mips_elf_perform_relocation (struct bfd_link_info *info,
        }
 
       /* Make this the JALX opcode.  */
-      x = (x & ~(0x3f << 26)) | (jalx_opcode << 26);
+      x = (x & ~(0x3fu << 26)) | (jalx_opcode << 26);
     }
   else if (cross_mode_jump_p && b_reloc_p (r_type))
     {
This page took 0.026031 seconds and 4 git commands to generate.