brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.1 KiB · fd83ead Raw
37 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#include <clc/clc_convert.h>10#include <clc/integer/clc_clz.h>11#include <clc/internal/clc.h>12#include <clc/math/clc_floor.h>13#include <clc/math/clc_fma.h>14#include <clc/math/clc_ldexp.h>15#include <clc/math/clc_subnormal_config.h>16#include <clc/math/clc_trunc.h>17#include <clc/math/math.h>18#include <clc/shared/clc_max.h>19 20#define __CLC_ADDRESS_SPACE private21#include <clc_remquo.inc>22#undef __CLC_ADDRESS_SPACE23 24#define __CLC_ADDRESS_SPACE global25#include <clc_remquo.inc>26#undef __CLC_ADDRESS_SPACE27 28#define __CLC_ADDRESS_SPACE local29#include <clc_remquo.inc>30#undef __CLC_ADDRESS_SPACE31 32#if _CLC_DISTINCT_GENERIC_AS_SUPPORTED33#define __CLC_ADDRESS_SPACE generic34#include <clc_remquo.inc>35#undef __CLC_ADDRESS_SPACE36#endif37