]> Nishi Git Mirror - gwion.git/commitdiff
:bug: Fix late warnings
authorJérémie Astor <fennecdjay@gmail.com>
Mon, 16 Aug 2021 12:09:04 +0000 (14:09 +0200)
committerJérémie Astor <fennecdjay@gmail.com>
Mon, 16 Aug 2021 12:09:04 +0000 (14:09 +0200)
src/emit/emit.c

index a26111c37e17fcc6331282379f1979a990d00265..d35b606e0cfa773f22c9afffc0b243d8cfaa8199 100644 (file)
@@ -944,7 +944,7 @@ ANN static void set_late(const Gwion gwion, const Exp_Decl *decl,
 }
 
 static inline bool _late_array(const Array_Sub array) {
-  return array && !array->exp;
+  return !array || !array->exp;
 }
 
 ANN static inline bool late_array(const Type_Decl *td, const Var_Decl var) {