Merge "Extend x32 check by also checking for __x86_64__."

This commit is contained in:
Johann 2014-12-08 14:52:31 -08:00 committed by Gerrit Code Review
commit 547cb14e15

View File

@ -1118,7 +1118,7 @@ EOF
bits=32
enabled x86_64 && bits=64
check_cpp <<EOF && bits=x32
#ifndef __ILP32__
#if !defined(__ILP32__) || !defined(__x86_64__)
#error "not x32"
#endif
EOF