[ASan] replace '#if ... or ...' with '#if ... || ...'

llvm-svn: 153332
This commit is contained in:
Timur Iskhodzhanov 2012-03-23 12:21:47 +00:00
parent 5e8ffa83c0
commit f392910965
1 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@
#include <setjmp.h>
#include <assert.h>
#if defined(__i386__) or defined(__x86_64__)
#if defined(__i386__) || defined(__x86_64__)
#include <emmintrin.h>
#endif
@ -777,7 +777,7 @@ TEST(AddressSanitizer, ThreadStackReuseTest) {
pthread_join(t, 0);
}
#if defined(__i386__) or defined(__x86_64__)
#if defined(__i386__) || defined(__x86_64__)
TEST(AddressSanitizer, Store128Test) {
char *a = Ident((char*)malloc(Ident(12)));
char *p = a;