Appeasing an MSVC compile warning about "and"; NFC.

llvm-svn: 220519
This commit is contained in:
Aaron Ballman 2014-10-23 21:59:34 +00:00
parent db53e30eba
commit 29eec9a520
1 changed files with 1 additions and 1 deletions

View File

@ -441,7 +441,7 @@ bool DescribeAddressIfStack(uptr addr, uptr access_size) {
// especially given that the alloca may be from entirely different place
// (e.g. use-after-scope, or different thread's stack).
StackTrace alloca_stack;
#if defined(__powerpc64__) and defined(__BIG_ENDIAN__)
#if defined(__powerpc64__) && defined(__BIG_ENDIAN__)
// On PowerPC64 ELFv1, the address of a function actually points to a
// three-doubleword data structure with the first field containing
// the address of the function's code.