diff options
| author | dgp@users.sourceforge.net <dgp> | 2006-12-12 17:21:38 (GMT) |
|---|---|---|
| committer | dgp@users.sourceforge.net <dgp> | 2006-12-12 17:21:38 (GMT) |
| commit | 85baf3cc8d7769955f336766df0bc5ff0d375be5 (patch) | |
| tree | e903c3b82fb1e9a97363419b07c94bd324299ff9 /generic/tclMathOp.c | |
| parent | bdfe5e3daeddd18942e560390c3242b4ab54303c (diff) | |
| download | tcl-85baf3cc8d7769955f336766df0bc5ff0d375be5.zip tcl-85baf3cc8d7769955f336766df0bc5ff0d375be5.tar.gz tcl-85baf3cc8d7769955f336766df0bc5ff0d375be5.tar.bz2 | |
* generic/tclBasic.c: Final step routing all direct evaluation forms
* generic/tclCompExpr.c: of the operator commands through TEBC,
* generic/tclCompile.h: dropping all the routines in tclMathOp.c.
* generic/tclMathOp.c: Still needs Engineering Manual attention.
Diffstat (limited to 'generic/tclMathOp.c')
| -rw-r--r-- | generic/tclMathOp.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/generic/tclMathOp.c b/generic/tclMathOp.c index 0ef70a1..9858c00 100644 --- a/generic/tclMathOp.c +++ b/generic/tclMathOp.c @@ -9,9 +9,17 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclMathOp.c,v 1.7 2006/12/08 20:48:09 dgp Exp $ + * RCS: @(#) $Id: tclMathOp.c,v 1.8 2006/12/12 17:21:42 dgp Exp $ */ +/* + * NOTE: None of the routines in this file are currently in use. + * The file itself may be removed, but remains in place for now in + * case its routine may be useful during performance testing. + */ + +#if 0 + #include "tclInt.h" #include "tclCompile.h" #include "tommath.h" @@ -2865,6 +2873,7 @@ TclStreqOpCmd( Tcl_SetBooleanObj(Tcl_GetObjResult(interp), result); return TCL_OK; } +#endif /* * Local Variables: |
