<html>
    <head>
      <base href="https://bugs.llvm.org/">
    </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 - Inline assembler doesn't honor ".weak" on PPC"
   href="https://bugs.llvm.org/show_bug.cgi?id=45246">45246</a>
          </td>
        </tr>

        <tr>
          <th>Summary</th>
          <td>Inline assembler doesn't honor ".weak" on PPC
          </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>All
          </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>isanbard@gmail.com
          </td>
        </tr>

        <tr>
          <th>CC</th>
          <td>llvm-bugs@lists.llvm.org, neeilans@live.com, richard-llvm@metafoo.co.uk
          </td>
        </tr></table>
      <p>
        <div>
        <pre>When I try to compile the prodkernel with the integrated assembler for PPC, I
get an error while linking saying that `_zimage_start' is duplicated. It looks
like the `arch/powerpc/boot/crt0.S' file specifies that symbol as ".weak", but
clang turns it into a definition:

$ cat ppc-asm.S
        .text
        .weak   _zimage_start
        .globl  _zimage_start
_zimage_start:
$ clang -target powerpc64-linux-gnu -o /tmp/t.o ../ppc-asm.S -c
$ nm /tmp/t.o
0000000000000000 T _zimage_start</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>