Commit 5d48268f by Volker Reichelt Committed by Volker Reichelt

re PR c++/6634 (wrong parsing of "long long double")

	PR c++/6634
	* decl.c (grokdeclarator): Check whether "long" or "short" was
	specified for non-integral types.

	* g++.dg/parse/long1.C: Add more tests.

From-SVN: r115843
parent caade192
2006-07-31 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
PR c++/6634
* decl.c (grokdeclarator): Check whether "long" or "short" was
specified for non-integral types.
2006-07-28 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
* Make-lang.in: Use $(HEADER_H) instead of header.h in dependencies.
......
......@@ -7198,6 +7198,8 @@ grokdeclarator (const cp_declarator *declarator,
error ("%<long%> invalid for %qs", name);
else if (short_p && TREE_CODE (type) == REAL_TYPE)
error ("%<short%> invalid for %qs", name);
else if ((long_p || short_p) && TREE_CODE (type) != INTEGER_TYPE)
error ("%<long%> or %<short%> invalid for %qs", name);
else if ((long_p || short_p) && explicit_char)
error ("%<long%> or %<short%> specified with char for %qs", name);
else if (long_p && short_p)
......
2006-07-31 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
PR c++/6634
* g++.dg/parse/long1.C: Add more tests.
2006-07-30 Francois-Xavier Coudert <coudert@clipper.ens.fr>
* gfortran.dg/lrshift_1.c: New file.
......@@ -5,3 +5,7 @@
long long double x; // { dg-error "long long" }
long double y;
long float z; // { dg-error "long" }
typedef short void SV; // { dg-error "short" }
typedef long struct A LA; // { dg-error "long" }
typedef short char SC; // { dg-error "short" }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment