gdb: add target_ops::supports_displaced_step
[deliverable/binutils-gdb.git] / gold / tls.h
index 7103d3febb3ec12e368420df8cc520688978b496..44e6d1dd09320f2f2be2f7a47478d698e2fd6cc2 100644 (file)
@@ -1,6 +1,6 @@
 // tls.h -- Thread-Local Storage utility routines for gold   -*- C++ -*-
 
-// Copyright 2006, 2007 Free Software Foundation, Inc.
+// Copyright (C) 2006-2020 Free Software Foundation, Inc.
 // Written by Ian Lance Taylor <iant@google.com>.
 
 // This file is part of gold.
@@ -50,10 +50,11 @@ inline void
 check_range(const Relocate_info<size, big_endian>* relinfo,
             size_t relnum,
             typename elfcpp::Elf_types<size>::Elf_Addr rel_offset,
-            off_t view_size, off_t off)
+            section_size_type view_size, int off)
 {
-  off_t offset = rel_offset + off;
-  if (offset < 0 || offset > view_size)
+  typename elfcpp::Elf_types<size>::Elf_Addr offset = rel_offset + off;
+  // Elf_Addr is unsigned, so this also tests for signed offset < 0.
+  if (offset > view_size)
     gold_error_at_location(relinfo, relnum, rel_offset,
                           _("TLS relocation out of range"));
 }
This page took 0.022633 seconds and 4 git commands to generate.