view Paper/source/regi-id.c @ 75:454ddda8d306

modify explanation of CbC
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Tue, 03 Jan 2012 21:13:11 +0900
parents e07c7952f237
children
line wrap: on
line source

 case RID_CbC_CODE:
if (specs->long_p)
  error_at (loc,(
                           "both %<long%> and %<void%> in "
                           "declaration specifiers"));
 else if (specs->short_p)
   error_at (loc,
	     ("both %<short%> and %<void%> in "
	      "declaration specifiers"));
 else if (specs->signed_p)
   error_at (loc,
	     ("both %<signed%> and %<void%> in "
	      "declaration specifiers"));
 else if (specs->unsigned_p)
   error_at (loc,
	     ("both %<unsigned%> and %<void%> in "
	      "declaration specifiers"));
 else if (specs->complex_p)
   error_at (loc,
	     ("both %<complex%> and %<void%> in "
	      "declaration specifiers"));
 else
   specs->typespec_word = cts_CbC_code;
return specs;