<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 - [RV64] Wrong libcall emitted"
   href="https://bugs.llvm.org/show_bug.cgi?id=46317">46317</a>
          </td>
        </tr>

        <tr>
          <th>Summary</th>
          <td>[RV64] Wrong libcall emitted
          </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>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>Backend: RISC-V
          </td>
        </tr>

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

        <tr>
          <th>Reporter</th>
          <td>kamleshbhalui@gmail.com
          </td>
        </tr>

        <tr>
          <th>CC</th>
          <td>asb@lowrisc.org, llvm-bugs@lists.llvm.org
          </td>
        </tr></table>
      <p>
        <div>
        <pre>consider below testcase for problem overview.

$cat test.c

int foo(double x){
    return x;
}


$clang -O2 -target riscv64 -march=rv64imac -mabi=lp64 test.c -S

$cat test.s

foo(double): # @foo(double)
  addi sp, sp, -16
  sd ra, 8(sp)
  call __fixdfdi // this is incorrect.
  ld ra, 8(sp)
  addi sp, sp, 16
  ret

while libcall emitted by gcc looks right.

$riscv64-gcc -O2 -march=rv64imac -mabi=lp64 -S test.c

$cat test.s
foo(double):
        addi    sp,sp,-16
        sd      ra,8(sp)
        call    __fixdfsi  // This is correct.
        ld      ra,8(sp)
        sext.w  a0,a0
        addi    sp,sp,16
        jr      ra


as it can be observed clang emitted wrong lib call?</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>