18 lines · c
1/*2 * Copyright 2019 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_multi_macro.h>11 12/* Does "multi" involve any local variables?13 */14isl_bool FN(MULTI(BASE),involves_locals)(__isl_keep MULTI(BASE) *multi)15{16 return FN(MULTI(BASE),any)(multi, FN(EL,involves_locals));17}18