diff options
author | drh <drh@noemail.net> | 2015-06-30 13:28:18 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2015-06-30 13:28:18 +0000 |
commit | 329428e2088aabb1db2dc6e48108b76551405a8e (patch) | |
tree | 4c5e3e97e79292873c0bbc7e1fb46f24df24f3ae /src/util.c | |
parent | 5372e4d4f9a6407de9075e29ecbd0730dc6193c7 (diff) | |
download | sqlite-329428e2088aabb1db2dc6e48108b76551405a8e.tar.gz sqlite-329428e2088aabb1db2dc6e48108b76551405a8e.zip |
Remove the use of htonl() in the previous check-in due to linkage issues.
Add the get2byteAligned() macro and use it for access to the cell offsets
on btree pages for about a 1% performance gain.
FossilOrigin-Name: 79ff36b7170c9e7e7a9935c8b9d1665867771087
Diffstat (limited to 'src/util.c')
-rw-r--r-- | src/util.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/util.c b/src/util.c index f2d3e91e7..4e029b0e0 100644 --- a/src/util.c +++ b/src/util.c @@ -1082,10 +1082,6 @@ u32 sqlite3Get4byte(const u8 *p){ u32 x; memcpy(&x,p,4); return x; -#elif defined(_MSC_VER) - u32 x; - memcpy(&x,p,4); - return htonl(x); #elif SQLITE_BYTEORDER==1234 && defined(__GNUC__) u32 x; memcpy(&x,p,4); @@ -1098,9 +1094,6 @@ u32 sqlite3Get4byte(const u8 *p){ void sqlite3Put4byte(unsigned char *p, u32 v){ #if SQLITE_BYTEORDER==4321 memcpy(p,&v,4); -#elif defined(_MSC_VER) - u32 x = htonl(v); - memcpy(&x,p,4); #elif SQLITE_BYTEORDER==1234 && defined(__GNUC__) u32 x = __builtin_bswap32(v); memcpy(p,&x,4); |