shithub: scc

Download patch

ref: 6f28085c2d0113db59693fdf30fe1d1e855635f9
parent: ab7033ad9cf899c83e4911881cb11026103e7fd4
author: Roberto E. Vargas Caballero <[email protected]>
date: Mon Mar 31 15:36:43 EDT 2014

Remove last rest of complex types

Complex types were removed, so it is non logic accept them in the
lexical analysis.

--- a/lex.c
+++ b/lex.c
@@ -95,7 +95,6 @@
 		{"auto", SCLASS, AUTO},
 		{"break", BREAK, BREAK},
 		{"_Bool", TYPE, BOOL},
-		{"_Complex", TYPE, COMPLEX},
 		{"case", CASE, CASE},
 		{"char", TYPE, CHAR},
 		{"const", TQUALIFIER, CONST},
@@ -111,7 +110,6 @@
 		{"goto", GOTO, GOTO},
 		{"if", IF, IF},
 		{"int", TYPE, INT},
-		{"_Imaginary", TYPE, IMAGINARY},
 		{"long", TYPE, LONG},
 		{"register", SCLASS, REGISTER},
 		{"restrict", TQUALIFIER, RESTRICT},