diff options
author | dgregor <dgregor@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-07-11 13:50:13 +0000 |
---|---|---|
committer | dgregor <dgregor@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-07-11 13:50:13 +0000 |
commit | a1406b2e90b8201daadd1194205b41e43ee900b2 (patch) | |
tree | 1f482a01f0df0a7fe6691efc8bb9d3348de39c45 /gcc/params.def | |
parent | 14d408d9b92b7887bc337c801913401b8faa21dd (diff) | |
download | gcc-a1406b2e90b8201daadd1194205b41e43ee900b2.tar.gz |
2007-07-11 Douglas Gregor <doug.gregor@gmail.com>
* params.def (PARAM_VERIFY_CANONICAL_TYPES): Remove.
(PARAM_USE_CANONICAL_TYPES): New; decides whether to use canonical
types or not.
* params.h (VERIFY_CANONICAL_TYPES): Remove.
(USE_CANONICAL_TYPES): New.
* doc/invoke.texi (verify-canonical-types): Remove.
(use-canonical-types): Add.
2007-07-11 Douglas Gregor <doug.gregor@gmail.com>
* typeck.c (comptypes): When USE_CANONICAL_TYPES, use the
canonical types; otherwise, fall back to structural type
comparisons. If ENABLE_CHECKING and USE_CANONICAL_TYPES, give an
internal compiler error if the canonical types are wrong.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@126550 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/params.def')
-rw-r--r-- | gcc/params.def | 23 |
1 files changed, 10 insertions, 13 deletions
diff --git a/gcc/params.def b/gcc/params.def index 70ca3ad00c1..c9d5b8084dd 100644 --- a/gcc/params.def +++ b/gcc/params.def @@ -673,19 +673,16 @@ DEFPARAM (PARAM_L1_CACHE_LINE_SIZE, "The size of L1 cache line", 32, 0, 0) -#ifdef ENABLE_CHECKING -# define GCC_CANONICAL_TYPES_DEFAULT 1 -#else -# define GCC_CANONICAL_TYPES_DEFAULT 0 -#endif - -/* Whether we should verify that the canonical types in the system are - consistent with the "structural" typing. */ - -DEFPARAM (PARAM_VERIFY_CANONICAL_TYPES, - "verify-canonical-types", - "Whether to verify canonical types", - GCC_CANONICAL_TYPES_DEFAULT, 0, 1) +/* Whether we should use canonical types rather than deep "structural" + type checking. Setting this value to 1 (the default) improves + compilation performance in the C++ and Objective-C++ front end; + this value should only be set to zero to work around bugs in the + canonical type system by disabling it. */ + +DEFPARAM (PARAM_USE_CANONICAL_TYPES, + "use-canonical-types", + "Whether to use canonical types", + 1, 0, 1) /* Local variables: mode:c |