Update of /cvsroot/monetdb/MonetDB5/src/optimizer
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv21088

Modified Files:
        opt_heuristics.mx 
Log Message:
more unused variables removed


Index: opt_heuristics.mx
===================================================================
RCS file: /cvsroot/monetdb/MonetDB5/src/optimizer/opt_heuristics.mx,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- opt_heuristics.mx   2 Jan 2008 08:21:12 -0000       1.10
+++ opt_heuristics.mx   3 Jan 2008 10:27:46 -0000       1.11
@@ -111,14 +111,12 @@
 OPTheuristicsImplementation(MalBlkPtr mb, MalStkPtr stk, InstrPtr pci)
 {
        int i, k, combis = 0, squeeze = 0;
-       InstrPtr p;
 
        (void) stk;             /* fool compilers */
        (void) pci;
 
        /* process the combinators */
        for (i = 0; i < mb->stop - 1; i++) {
-               p = getInstrPtr(mb, i);
                for (k = i + 1; k < mb->stop; k++)
                        if (SPcombi000(mb, i, k)) {
 #ifdef DEBUG_OPT_OPTIMIZER
@@ -131,7 +129,6 @@
        }
        /* process the squeezers */
        for (i = 0; i < mb->stop - 1; i++) {
-               p = getInstrPtr(mb, i);
                for (k = i + 1; k < mb->stop; k++)
                        if (SPsqueezer000(mb, i, k)) {
 #ifdef DEBUG_OPT_OPTIMIZER


-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Monetdb-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-checkins

Reply via email to