<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 - -Watomic-alignment not using available alignment info"
   href="https://bugs.llvm.org/show_bug.cgi?id=51076">51076</a>
          </td>
        </tr>

        <tr>
          <th>Summary</th>
          <td>-Watomic-alignment not using available alignment info
          </td>
        </tr>

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

        <tr>
          <th>Version</th>
          <td>12.0
          </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>C
          </td>
        </tr>

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

        <tr>
          <th>Reporter</th>
          <td>rth@twiddle.net
          </td>
        </tr>

        <tr>
          <th>CC</th>
          <td>blitzrakete@gmail.com, dgregor@apple.com, erik.pilkington@gmail.com, llvm-bugs@lists.llvm.org, richard-llvm@metafoo.co.uk
          </td>
        </tr></table>
      <p>
        <div>
        <pre>For i686:

----------------------------------
#include <stdint.h>

uint64_t foo(uint64_t *p)
{
  p = __builtin_assume_aligned(p, 8);
  return __atomic_load_n(p, __ATOMIC_RELAXED);
}

uint64_t bar(uintptr_t p)
{
  if (p & 7) return 0;
  return __atomic_load_n((uint64_t *)p, __ATOMIC_RELAXED);
}
----------------------------------

$ clang-12 -Wall -O -c z.c
z.c:6:10: warning: misaligned atomic operation may incur significant
performance penalty; the expected alignment (8 bytes) exceeds the actual
alignment (4 bytes) [-Watomic-alignment]
  return __atomic_load_n(p, __ATOMIC_RELAXED);
         ^
z.c:12:10: warning: misaligned atomic operation may incur significant
performance penalty; the expected alignment (8 bytes) exceeds the actual
alignment (4 bytes) [-Watomic-alignment]
  return __atomic_load_n((uint64_t *)p, __ATOMIC_RELAXED);
         ^
2 warnings generated.

In both cases, additional alignment information is available
beyond that of the uint64_t type, and it is not being used.</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>