brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1019 B · d78fbb8 Raw
30 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// This does exist only for fp3210#if __CLC_FPSIZE == 3211#ifndef __CLC_SCALAR12 13__CLC_FUNC(__CLC_VECSIZE, __CLC_VECSIZE, __CLC_GENTYPE, __private);14__CLC_FUNC(__CLC_VECSIZE, __CLC_VECSIZE, __CLC_GENTYPE, __local);15__CLC_FUNC(__CLC_VECSIZE, __CLC_VECSIZE, __CLC_GENTYPE, __global);16#if _CLC_DISTINCT_GENERIC_AS_SUPPORTED17__CLC_FUNC(__CLC_VECSIZE, __CLC_VECSIZE, __CLC_GENTYPE, __generic);18#endif19 20#undef __CLC_OFFSET21#else22__CLC_FUNC(, 1, __CLC_GENTYPE, __private);23__CLC_FUNC(, 1, __CLC_GENTYPE, __local);24__CLC_FUNC(, 1, __CLC_GENTYPE, __global);25#if _CLC_DISTINCT_GENERIC_AS_SUPPORTED26__CLC_FUNC(, 1, __CLC_GENTYPE, __generic);27#endif28#endif29#endif30