SCM Repository
View of /sml/trunk/ckit/src/variants/ansic/config.sml
Parent Directory
|
Revision Log
Revision 809 -
(download)
(annotate)
Wed Apr 18 17:53:01 2001 UTC (19 years, 10 months ago) by blume
File size: 1962 byte(s)
Wed Apr 18 17:53:01 2001 UTC (19 years, 10 months ago) by blume
File size: 1962 byte(s)
now using tristate logic for ParseControl.underscoreKeywords three-way choice: 1. accept as keywords 2. accept as (ordinary) keywords 3. reject (error)
(* Copyright (c) 1998 by Lucent Technologies *) (* Configuration for ANSIC *) structure Config : CONFIG = struct val DFLAG = false structure ParseControl : PARSECONTROL = struct val symbolLength = 256 val typedefsScoped = true val prototypesAllowed = true val templatesAllowed = false val trailingCommaInEnum = {error=false,warning=true} val newFundefsAllowed = true val voidAllowed = true val voidStarAllowed = true val constAllowed = true val volatileAllowed = true fun violation str = TextIO.output(TextIO.stdOut,"\nERROR: in ANSI C " ^ str ^ "\n") val Dkeywords = false val parseDirective = true (* Chandra, 6/21/99 *) val underscoreKeywords = SOME true (* Blume *) end (* see type-check-control-sig.sml for description of these flags *) structure TypeCheckControl : TYPECHECKCONTROL = struct val don't_convert_SHORT_to_INT = false (* not doing dsp *) val don't_convert_DOUBLE_in_usual_unary_cnv = true (* ansic *) val enumeration_incompatibility = true (* ansic *) val pointer_compatibility_quals = true (* ansic *) val undeclared_id_error = true (* ansic *) val undeclared_fun_error = true (* ansic *) val convert_function_args_to_pointers = true (* ansic *) val storage_size_check = true (* ansic *) val perform_type_checking = true (* do type checking *) val ISO_bitfield_restrictions = false (* allow char, short, long in bitfields *) val allow_enum_bitfields = true (* allow enums in bitfields *) val allow_non_constant_local_initializer_lists = false (* ansic *) val partial_enum_error = false (* permissive *) val partial_enums_have_unknown_size = false (* permissive *) end end (* structure Config *)
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |