winedbg: Disable some dead code in expr_eval.

This commit is contained in:
Gerald Pfeifer 2011-05-22 18:19:27 +02:00 committed by Alexandre Julliard
parent 0e695c3444
commit 87c0e868be
1 changed files with 1 additions and 2 deletions

View File

@ -278,7 +278,6 @@ struct dbg_lvalue expr_eval(struct expr* exp)
int i; int i;
struct dbg_lvalue exp1; struct dbg_lvalue exp1;
struct dbg_lvalue exp2; struct dbg_lvalue exp2;
unsigned int cexp[5];
DWORD64 scale1, scale2, scale3; DWORD64 scale1, scale2, scale3;
struct dbg_type type1, type2; struct dbg_type type1, type2;
DWORD tag; DWORD tag;
@ -397,6 +396,7 @@ struct dbg_lvalue expr_eval(struct expr* exp)
} }
break; break;
case EXPR_TYPE_CALL: case EXPR_TYPE_CALL:
#if 0
/* /*
* First, evaluate all of the arguments. If any of them are not * First, evaluate all of the arguments. If any of them are not
* evaluable, then bail. * evaluable, then bail.
@ -424,7 +424,6 @@ struct dbg_lvalue expr_eval(struct expr* exp)
/* should never be here */ /* should never be here */
} }
#if 0
/* FIXME: NEWDBG NIY */ /* FIXME: NEWDBG NIY */
/* Anyway, I wonder how this could work depending on the calling order of /* Anyway, I wonder how this could work depending on the calling order of
* the function (cdecl vs pascal for example) * the function (cdecl vs pascal for example)