1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-08 03:22:21 +03:00

Use the ROUND8() macro to round an integer up to the nearest multiple of 8 and ROUNDDOWN8() macro to round down to the nearest multiple of 8. This is a cosmetic change. (CVS 6372)

FossilOrigin-Name: db1d4d2f5083adf5438c7f387b115180800e7bd9
This commit is contained in:
danielk1977
2009-03-23 04:33:32 +00:00
parent ca18d20fd6
commit bc73971db6
12 changed files with 50 additions and 51 deletions

View File

@@ -12,7 +12,7 @@
** This file contains routines used for analyzing expressions and
** for generating VDBE code that evaluates expressions in SQLite.
**
** $Id: expr.c,v 1.420 2009/03/18 10:36:13 drh Exp $
** $Id: expr.c,v 1.421 2009/03/23 04:33:32 danielk1977 Exp $
*/
#include "sqliteInt.h"
@@ -714,7 +714,7 @@ static int dupedExprNodeSize(Expr *p, int flags){
){
nByte += p->span.n;
}
return (nByte+7)&~7;
return ROUND8(nByte);
}
/*