search for: msb_first

Displaying 1 result from an estimated 1 matches for "msb_first".

Did you mean: lsb_first
2007 Dec 12
0
[LLVMdev] RFC: configure.ac
...= --- autoconf/configure.ac (revision 44957) +++ autoconf/configure.ac (working copy) @@ -227,9 +227,9 @@ AC_SUBST(ARCH,$llvm_cv_target_arch) dnl Check for the endianness of the target -AC_C_BIGENDIAN([AC_SUBST([ENDIAN],[big]), +AC_C_BIGENDIAN([AC_SUBST(ENDIAN,[big]), AC_DEFINE([MSB_FIRST], [1], [Define if this target is big endian])], - [AC_SUBST([ENDIAN],[little]), + [AC_SUBST(ENDIAN,[little]), AC_DEFINE([LSB_FIRST], [1], [Define if this target is little endian])]) dnl Check for build platform executable suffix if we're crosscompi...