brintos

brintos / llvm-project-archived public Read only

0
0
Text · 797 B · 2f85977 Raw
23 lines · plain
1//===----------------------------------------------------------------------===//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===----------------------------------------------------------------------===//8 9// pi/180 = ~0.01745329251994329577 or 0x1.1df46a2529d39p-6 or 0x1.1df46ap-6F10#if __CLC_FPSIZE == 3211#define RADIAN_LITERAL 0x1.1df46ap-6F12#elif __CLC_FPSIZE == 6413#define RADIAN_LITERAL 0x1.1df46a2529d39p-614#elif __CLC_FPSIZE == 1615#define RADIAN_LITERAL (half)0x1.1df46a2529d39p-616#endif17 18_CLC_OVERLOAD _CLC_DEF __CLC_GENTYPE __clc_radians(__CLC_GENTYPE degrees) {19  return RADIAN_LITERAL * degrees;20}21 22#undef RADIAN_LITERAL23