<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 - Assembler directives cannot be separated by a semicolon if aarch64 or arm64 is specified via -arch instead of -triple"
   href="https://bugs.llvm.org/show_bug.cgi?id=39010">39010</a>
          </td>
        </tr>

        <tr>
          <th>Summary</th>
          <td>Assembler directives cannot be separated by a semicolon if aarch64 or arm64 is specified via -arch instead of -triple
          </td>
        </tr>

        <tr>
          <th>Product</th>
          <td>libraries
          </td>
        </tr>

        <tr>
          <th>Version</th>
          <td>trunk
          </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>MC
          </td>
        </tr>

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

        <tr>
          <th>Reporter</th>
          <td>tblodt@icloud.com
          </td>
        </tr>

        <tr>
          <th>CC</th>
          <td>llvm-bugs@lists.llvm.org
          </td>
        </tr></table>
      <p>
        <div>
        <pre>$ echo '.if 0;.endif' | /usr/local/opt/llvm/bin/llvm-mc -triple arm64
        .text
$ echo '.if 0;.endif' | /usr/local/opt/llvm/bin/llvm-mc -arch arm64
        .text
<stdin>:2:1: error: unmatched .ifs or .elses

^

In this example, the first command succeeds, as it should. The second command
should be exactly equivalent, but it isn't; it doesn't allow directives to be
separated by semicolons and requires newlines instead.</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>