tsan: fix CPP_WEAK definition (it must be the other way around)

llvm-svn: 173932
This commit is contained in:
Dmitry Vyukov 2013-01-30 14:38:44 +00:00
parent 28800da1b3
commit 087efd23d6
1 changed files with 3 additions and 3 deletions

View File

@ -28,13 +28,13 @@ namespace __tsan {
const bool kGoMode = true;
const bool kCppMode = false;
const char *const kTsanOptionsEnv = "GORACE";
#define CPP_WEAK WEAK
// Go linker does not support weak symbols.
#define CPP_WEAK
#else
const bool kGoMode = false;
const bool kCppMode = true;
const char *const kTsanOptionsEnv = "TSAN_OPTIONS";
// Go linker does not support weak symbols.
#define CPP_WEAK
#define CPP_WEAK WEAK
#endif
const int kTidBits = 13;