Added some experimental test code.

committer: mfx <mfx> 978092868 +0000
This commit is contained in:
Markus F.X.J. Oberhumer
2000-12-29 12:27:48 +00:00
parent 8a77a477df
commit f4d2287e57
+9
View File
@@ -253,6 +253,15 @@ int le16_compare(const void *e1, const void *e2);
int le32_compare(const void *e1, const void *e2); int le32_compare(const void *e1, const void *e2);
// just for testing...
#if 0 && defined(__i386__) && defined(__GNUC__)
typedef unsigned short LE16_unaligned __attribute__((aligned(1)));
typedef unsigned int LE32_unaligned __attribute__((aligned(1)));
# define LE16 LE16_unaligned
# define LE32 LE32_unaligned
#endif
#endif /* already included */ #endif /* already included */