shithub: scc

Download patch

ref: eddc03b3c882248b273ecf8ba4edc39bd7b6b46e
parent: cd64376e760f82de7ac4bcef0e8567be134b4093
author: Lucas Gabriel Vuotto <lvuotto92@gmail.com>
date: Mon Mar 6 04:17:06 EST 2017

[cc1] Fix TFUNDEF value

Signed-off-by: Lucas Gabriel Vuotto <lvuotto92@gmail.com>

--- a/cc1/cc1.h
+++ b/cc1/cc1.h
@@ -23,7 +23,7 @@
 	TAGGREG  = 1 << 4,    /* the type is struct or union */
 	TK_R     = 1 << 5,    /* this is a K&R-function */
 	TELLIPSIS= 1 << 6,    /* this function has an ellipsis par */
-	TFUNDEF  = 2 << 7,    /* function definition */
+	TFUNDEF  = 1 << 7,    /* function definition */
 };
 
 enum inputtype {