From d0547bc36bd6ccb84eff128fc6e4f2df034a705a Mon Sep 17 00:00:00 2001
From: Cyrille Bagard <nocbos@gmail.com>
Date: Sat, 26 Oct 2019 11:55:56 +0200
Subject: Fixed warnings and errors from the compiler providing architectures
 support.

---
 tools/d2c/Makefile.am         | 2 +-
 tools/d2c/args/Makefile.am    | 2 +-
 tools/d2c/assert/Makefile.am  | 2 +-
 tools/d2c/bits/Makefile.am    | 2 +-
 tools/d2c/conv/Makefile.am    | 2 +-
 tools/d2c/conv/manager.c      | 2 +-
 tools/d2c/format/Makefile.am  | 2 +-
 tools/d2c/hooks/Makefile.am   | 2 +-
 tools/d2c/id/Makefile.am      | 2 +-
 tools/d2c/pattern/Makefile.am | 2 +-
 tools/d2c/rules/Makefile.am   | 2 +-
 11 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/tools/d2c/Makefile.am b/tools/d2c/Makefile.am
index e5cfef4..a81bd2b 100644
--- a/tools/d2c/Makefile.am
+++ b/tools/d2c/Makefile.am
@@ -6,7 +6,7 @@ BUILT_SOURCES = grammar.h
 # afin de conserver des noms de fichiers simples, ie sans le nom de la
 # bibliothèque de sortie en préfixe.
 
-AM_YFLAGS = -v -d -p d2c_
+AM_YFLAGS = -v -d -p d2c_ -Wno-yacc
 
 AM_LFLAGS = -P d2c_ -o lex.yy.c --header-file=tokens.h			\
 			-Dyyget_lineno=d2c_get_lineno 						\
diff --git a/tools/d2c/args/Makefile.am b/tools/d2c/args/Makefile.am
index 3c4ef38..57167d9 100644
--- a/tools/d2c/args/Makefile.am
+++ b/tools/d2c/args/Makefile.am
@@ -6,7 +6,7 @@ BUILT_SOURCES = grammar.h
 # afin de conserver des noms de fichiers simples, ie sans le nom de la
 # bibliothèque de sortie en préfixe.
 
-AM_YFLAGS = -v -d -p args_
+AM_YFLAGS = -v -d -p args_ -Wno-yacc
 
 AM_LFLAGS = -P args_ -o lex.yy.c --header-file=tokens.h			\
 			-Dyyget_lineno=args_get_lineno 						\
diff --git a/tools/d2c/assert/Makefile.am b/tools/d2c/assert/Makefile.am
index 34d5b1c..c1bd5a8 100644
--- a/tools/d2c/assert/Makefile.am
+++ b/tools/d2c/assert/Makefile.am
@@ -6,7 +6,7 @@ BUILT_SOURCES = grammar.h
 # afin de conserver des noms de fichiers simples, ie sans le nom de la
 # bibliothèque de sortie en préfixe.
 
-AM_YFLAGS = -v -d -p assert_
+AM_YFLAGS = -v -d -p assert_ -Wno-yacc
 
 AM_LFLAGS = -P assert_ -o lex.yy.c --header-file=tokens.h			\
 			-Dyyget_lineno=assert_get_lineno 						\
diff --git a/tools/d2c/bits/Makefile.am b/tools/d2c/bits/Makefile.am
index 0d8beb8..fb47fcf 100644
--- a/tools/d2c/bits/Makefile.am
+++ b/tools/d2c/bits/Makefile.am
@@ -6,7 +6,7 @@ BUILT_SOURCES = grammar.h
 # afin de conserver des noms de fichiers simples, ie sans le nom de la
 # bibliothèque de sortie en préfixe.
 
-AM_YFLAGS = -v -d -p bits_
+AM_YFLAGS = -v -d -p bits_ -Wno-yacc
 
 AM_LFLAGS = -P bits_ -o lex.yy.c --header-file=tokens.h			\
 			-Dyyget_lineno=bits_get_lineno 						\
diff --git a/tools/d2c/conv/Makefile.am b/tools/d2c/conv/Makefile.am
index a22d5f7..609def0 100644
--- a/tools/d2c/conv/Makefile.am
+++ b/tools/d2c/conv/Makefile.am
@@ -6,7 +6,7 @@ BUILT_SOURCES = grammar.h
 # afin de conserver des noms de fichiers simples, ie sans le nom de la
 # bibliothèque de sortie en préfixe.
 
-AM_YFLAGS = -v -d -p conv_
+AM_YFLAGS = -v -d -p conv_ -Wno-yacc
 
 AM_LFLAGS = -P conv_ -o lex.yy.c --header-file=tokens.h			\
 			-Dyyget_lineno=conv_get_lineno 						\
diff --git a/tools/d2c/conv/manager.c b/tools/d2c/conv/manager.c
index b76e0b7..8322866 100644
--- a/tools/d2c/conv/manager.c
+++ b/tools/d2c/conv/manager.c
@@ -515,7 +515,7 @@ bool define_conv_func(conv_func *func, int fd, const coding_bits *bits, const co
 
             if (optional)
             {
-                if (as_raw)
+                if (as_raw && !func->used_as_op)
                 {
                     fprintf(stderr, "%s can not be optional and used as intermediate value at the same time!\n",
                             func->dest);
diff --git a/tools/d2c/format/Makefile.am b/tools/d2c/format/Makefile.am
index 8061804..eaf4f18 100644
--- a/tools/d2c/format/Makefile.am
+++ b/tools/d2c/format/Makefile.am
@@ -6,7 +6,7 @@ BUILT_SOURCES = grammar.h
 # afin de conserver des noms de fichiers simples, ie sans le nom de la
 # bibliothèque de sortie en préfixe.
 
-AM_YFLAGS = -v -d -p format_
+AM_YFLAGS = -v -d -p format_ -Wno-yacc
 
 AM_LFLAGS = -P format_ -o lex.yy.c --header-file=tokens.h		\
 			-Dyyget_lineno=format_get_lineno 					\
diff --git a/tools/d2c/hooks/Makefile.am b/tools/d2c/hooks/Makefile.am
index c049ac5..2f81d49 100644
--- a/tools/d2c/hooks/Makefile.am
+++ b/tools/d2c/hooks/Makefile.am
@@ -6,7 +6,7 @@ BUILT_SOURCES = grammar.h
 # afin de conserver des noms de fichiers simples, ie sans le nom de la
 # bibliothèque de sortie en préfixe.
 
-AM_YFLAGS = -v -d -p hooks_
+AM_YFLAGS = -v -d -p hooks_ -Wno-yacc
 
 AM_LFLAGS = -P hooks_ -o lex.yy.c --header-file=tokens.h		\
 			-Dyyget_lineno=hooks_get_lineno 					\
diff --git a/tools/d2c/id/Makefile.am b/tools/d2c/id/Makefile.am
index c3d18b8..5ce937f 100644
--- a/tools/d2c/id/Makefile.am
+++ b/tools/d2c/id/Makefile.am
@@ -6,7 +6,7 @@ BUILT_SOURCES = grammar.h
 # afin de conserver des noms de fichiers simples, ie sans le nom de la
 # bibliothèque de sortie en préfixe.
 
-AM_YFLAGS = -v -d -p id_
+AM_YFLAGS = -v -d -p id_ -Wno-yacc
 
 AM_LFLAGS = -P id_ -o lex.yy.c --header-file=tokens.h		\
 			-Dyyget_lineno=id_get_lineno 					\
diff --git a/tools/d2c/pattern/Makefile.am b/tools/d2c/pattern/Makefile.am
index 458eed0..6acc3aa 100644
--- a/tools/d2c/pattern/Makefile.am
+++ b/tools/d2c/pattern/Makefile.am
@@ -6,7 +6,7 @@ BUILT_SOURCES = grammar.h
 # afin de conserver des noms de fichiers simples, ie sans le nom de la
 # bibliothèque de sortie en préfixe.
 
-AM_YFLAGS = -v -d -p pattern_
+AM_YFLAGS = -v -d -p pattern_ -Wno-yacc
 
 AM_LFLAGS = -P pattern_ -o lex.yy.c --header-file=tokens.h		\
 			-Dyyget_lineno=pattern_get_lineno 					\
diff --git a/tools/d2c/rules/Makefile.am b/tools/d2c/rules/Makefile.am
index 93d3040..051d4f8 100644
--- a/tools/d2c/rules/Makefile.am
+++ b/tools/d2c/rules/Makefile.am
@@ -6,7 +6,7 @@ BUILT_SOURCES = grammar.h
 # afin de conserver des noms de fichiers simples, ie sans le nom de la
 # bibliothèque de sortie en préfixe.
 
-AM_YFLAGS = -v -d -p rules_
+AM_YFLAGS = -v -d -p rules_ -Wno-yacc
 
 AM_LFLAGS = -P rules_ -o lex.yy.c --header-file=tokens.h		\
 			-Dyyget_lineno=rules_get_lineno 					\
-- 
cgit v0.11.2-87-g4458