Deleted Added
full compact
1,9c1,7
< /* ===-- fixtfti.c - Implement __fixtfti -----------------------------------===
< *
< * The LLVM Compiler Infrastructure
< *
< * This file is dual licensed under the MIT and the University of Illinois Open
< * Source Licenses. See LICENSE.TXT for details.
< *
< * ===----------------------------------------------------------------------===
< */
---
> //===-- fixtfti.c - Implement __fixtfti -----------------------------------===//
> //
> // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
> // See https://llvm.org/LICENSE.txt for license information.
> // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
> //
> //===----------------------------------------------------------------------===//
19,22c17
< COMPILER_RT_ABI ti_int
< __fixtfti(fp_t a) {
< return __fixint(a);
< }
---
> COMPILER_RT_ABI ti_int __fixtfti(fp_t a) { return __fixint(a); }