From 9c728ef1458474d8ffd171690e8d03c124b17803 Mon Sep 17 00:00:00 2001 From: Stefano Sanfilippo Date: Thu, 27 Nov 2014 22:20:03 +0100 Subject: [PATCH] Ignoring deprecated-registers warning, since it's in generated code. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 845029c..4f50b75 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ compile: bison --verbose -d Monicelli.y flex -P mc Monicelli.ll - g++ -Wall -std=c++11 -DYYDEBUG=0 Monicelli.tab.c lex.mc.c Nodes.cpp main.cpp -o mcc + g++ -Wall -Wno-deprecated-register -std=c++11 -DYYDEBUG=0 Monicelli.tab.c lex.mc.c Nodes.cpp main.cpp -o mcc rm Monicelli.tab.* lex.mc.c graph: