brintos

brintos / llvm-project-archived public Read only

0
0
Text · 519 B · 8bd027b Raw
22 lines · c
1/*2 * Copyright 2020      Cerebras Systems3 *4 * Use of this software is governed by the MIT license5 *6 * Written by Sven Verdoolaege,7 * Cerebras Systems, 175 S San Antonio Rd, Los Altos, CA, USA8 */9 10#include <isl/space.h>11 12#include "isl_multi_macro.h"13 14/* This function performs the same operation as isl_multi_*_zero,15 * but is considered as a function on an isl_space when exported.16 */17__isl_give MULTI(BASE) *FN(isl_space_zero_multi,BASE)(18	__isl_take isl_space *space)19{20	return FN(MULTI(BASE),zero)(space);21}22