<html>
    <head>
      <base href="https://llvm.org/bugs/" />
    </head>
    <body><table border="1" cellspacing="0" cellpadding="8">
        <tr>
          <th>Bug ID</th>
          <td><a class="bz_bug_link 
          bz_status_NEW " title="NEW --- - R_ARM_TLS_DTPMOD32 uses incorrect symbol when generated for static __thread variable" href="https://urldefense.proofpoint.com/v2/url?u=https-3A__llvm.org_bugs_show-5Fbug.cgi-3Fid-3D24135&d=AwMBaQ&c=8hUWFZcy2Z-Za5rBPlktOQ&r=pF93YEPyB-J_PERP4DUZOJDzFVX5ZQ57vQk33wu0vio&m=7Ts6Q8X9y8apVsXaClJl8RAvCgUL97MxvazsLZy8bEo&s=cs_Inbm2UlkGt_EloDIRG9t4UV3c7JhR9IbD3R7qwiU&e=">24135</a>
          </td>
        </tr>

        <tr>
          <th>Summary</th>
          <td>R_ARM_TLS_DTPMOD32 uses incorrect symbol when generated for static __thread variable
          </td>
        </tr>

        <tr>
          <th>Product</th>
          <td>clang
          </td>
        </tr>

        <tr>
          <th>Version</th>
          <td>unspecified
          </td>
        </tr>

        <tr>
          <th>Hardware</th>
          <td>PC
          </td>
        </tr>

        <tr>
          <th>OS</th>
          <td>Linux
          </td>
        </tr>

        <tr>
          <th>Status</th>
          <td>NEW
          </td>
        </tr>

        <tr>
          <th>Severity</th>
          <td>normal
          </td>
        </tr>

        <tr>
          <th>Priority</th>
          <td>P
          </td>
        </tr>

        <tr>
          <th>Component</th>
          <td>LLVM Codegen
          </td>
        </tr>

        <tr>
          <th>Assignee</th>
          <td>unassignedclangbugs@nondot.org
          </td>
        </tr>

        <tr>
          <th>Reporter</th>
          <td>dimitry@google.com
          </td>
        </tr>

        <tr>
          <th>CC</th>
          <td>llvmbugs@cs.uiuc.edu
          </td>
        </tr>

        <tr>
          <th>Classification</th>
          <td>Unclassified
          </td>
        </tr></table>
      <p>
        <div>
        <pre>This bug seems to be arm-only, testing for x86 x86_64 yelds expected
ELF_R_SYM(r_info) == 0 - compiling for arm produces following relocation:

...
00003f7c  00000111 R_ARM_TLS_DTPMOD32     00003e20   .tbss
...

     1: 00003e20     0 SECTION LOCAL  DEFAULT   17 


Here is the test I was comliling

static __thread int t = 0;

extern "C" int* get_thread_local_int() {
  return &t;
}</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are on the CC list for the bug.</li>
      </ul>
    </body>
</html>