Tighten up sanity checking

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3706 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2002-09-13 22:18:26 +00:00
parent 4bb13b8eb1
commit dbc436cb07

View File

@ -35,10 +35,8 @@
#endif
#endif
#ifndef LITTLE_ENDIAN
#if !defined(BIG_ENDIAN) || !defined(INT64_MAX)
#if (!defined(LITTLE_ENDIAN) && !defined(BIG_ENDIAN)) || !defined(INT64_MAX)
#error "include/Support/DataTypes.h could not determine endianness!"
#endif
#endif
#endif /* LLVM_SUPPORT_DATATYPES_H */