diff options
author | das <das> | 2009-06-30 00:56:08 (GMT) |
---|---|---|
committer | das <das> | 2009-06-30 00:56:08 (GMT) |
commit | 93288b1b6b66e279ff92700ad78627879c3e3531 (patch) | |
tree | 1bdf0fea8a0fb90c3543dc08e19ae48f32da670a /generic/tclStubInit.c | |
parent | ccc761ddde222870a23a9ab6a3b3ee16e6bb2924 (diff) | |
download | tcl-93288b1b6b66e279ff92700ad78627879c3e3531.zip tcl-93288b1b6b66e279ff92700ad78627879c3e3531.tar.gz tcl-93288b1b6b66e279ff92700ad78627879c3e3531.tar.bz2 |
* generic/tclInt.h: add assert macros for clang static
* generic/tclPanic.c: analyzer and redefine Tcl_Panic to
* generic/tclStubInit.c: assert after panic in clang PURIFY
builds.
* generic/tclCmdIL.c: add clang assert for false positive
from static analyzer.
Diffstat (limited to 'generic/tclStubInit.c')
-rw-r--r-- | generic/tclStubInit.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclStubInit.c b/generic/tclStubInit.c index a5a627d..9241677 100644 --- a/generic/tclStubInit.c +++ b/generic/tclStubInit.c @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclStubInit.c,v 1.181 2009/06/18 09:42:40 dkf Exp $ + * RCS: @(#) $Id: tclStubInit.c,v 1.182 2009/06/30 00:56:08 das Exp $ */ #include "tclInt.h" @@ -33,6 +33,7 @@ #undef Tcl_ValidateAllMemory #undef Tcl_FindHashEntry #undef Tcl_CreateHashEntry +#undef Tcl_Panic /* * WARNING: The contents of this file is automatically generated by the |