Files
clang-p2996/polly/lib/External/isl/isl_multi_zero_space_templ.c
patacca 3f9bf9f42a [Polly][Isl] Update isl to isl-0.24-47-g8853f375
This is needed for the new functions exposed in the C++ interface as used in https://reviews.llvm.org/D104994

Reviewed By: Meinersbur

Differential Revision: https://reviews.llvm.org/D105132
2021-07-04 19:50:39 +02:00

22 lines
519 B
C

/*
* Copyright 2020 Cerebras Systems
*
* Use of this software is governed by the MIT license
*
* Written by Sven Verdoolaege,
* Cerebras Systems, 175 S San Antonio Rd, Los Altos, CA, USA
*/
#include <isl/space.h>
#include "isl_multi_macro.h"
/* This function performs the same operation as isl_multi_*_zero,
* but is considered as a function on an isl_space when exported.
*/
__isl_give MULTI(BASE) *FN(isl_space_zero_multi,BASE)(
__isl_take isl_space *space)
{
return FN(MULTI(BASE),zero)(space);
}