floatdixf.c 358 B

12345678910111213
  1. // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
  2. // See https://llvm.org/LICENSE.txt for license information.
  3. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. // xf_float __floatdixf(di_int a);
  5. #ifdef __x86_64__
  6. #include "../int_lib.h"
  7. xf_float __floatdixf(int64_t a) { return (xf_float)a; }
  8. #endif // __i386__