diff options
author | drh <drh@noemail.net> | 2006-01-23 21:44:53 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2006-01-23 21:44:53 +0000 |
commit | 2a3e4a714cc6c18e7f5561aee7a03eaaff0780cd (patch) | |
tree | 4931f83bf74c07af5ffe2bb877efbcbcce091ff2 /src | |
parent | c693e9e69322f48eb94e002c3bcd65108cb6c229 (diff) | |
download | sqlite-2a3e4a714cc6c18e7f5561aee7a03eaaff0780cd.tar.gz sqlite-2a3e4a714cc6c18e7f5561aee7a03eaaff0780cd.zip |
More progress toward getting SQLITE_OMIT_FLOATING_POINT to pass tests.
Ticket #1621. (CVS 3014)
FossilOrigin-Name: b52674e5642a9d26b15a5d5c2a6716febaef130a
Diffstat (limited to 'src')
-rw-r--r-- | src/vdbeaux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vdbeaux.c b/src/vdbeaux.c index 930092fb3..cf0c2ad35 100644 --- a/src/vdbeaux.c +++ b/src/vdbeaux.c @@ -1690,7 +1690,7 @@ int sqlite3VdbeSerialGet( case 7: { /* IEEE floating point */ u64 x; u32 y; -#ifndef NDEBUG +#if !defined(NDEBUG) && !defined(SQLITE_OMIT_FLOATING_POINT) /* Verify that integers and floating point values use the same ** byte order. The byte order differs on some (broken) architectures. */ |