mirror of
https://review.haiku-os.org/buildtools
synced 2024-11-23 15:29:11 +01:00
c8db99d323
GCC had a horrible .gitignore, untracked files were not applied
18 lines
411 B
C
18 lines
411 B
C
/*
|
|
* Copyright 2014 Ecole Normale Superieure
|
|
*
|
|
* Use of this software is governed by the MIT license
|
|
*
|
|
* Written by Sven Verdoolaege,
|
|
* Ecole Normale Superieure, 45 rue d'Ulm, 75230 Paris, France
|
|
*/
|
|
|
|
#include <isl_multi_macro.h>
|
|
|
|
/* Does "multi" involve any NaNs?
|
|
*/
|
|
isl_bool FN(MULTI(BASE),involves_nan)(__isl_keep MULTI(BASE) *multi)
|
|
{
|
|
return FN(MULTI(BASE),any)(multi, &FN(EL,involves_nan));
|
|
}
|