Skip to content

Commit 7b65056

Browse files
committed
fix preprocessor
1 parent 2b30e53 commit 7b65056

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lldb/unittests/Host/posix/SupportTest.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ TEST(Support, getProcFile_Pid) {
2626
}
2727
#endif // #ifndef __APPLE__
2828

29-
#if (defined(_AIX) || defined(__linux__)) && defined(LLVM_ENABLE_THREADING)
29+
#if defined(_AIX) || defined(__linux__)
3030
TEST(Support, getProcFile_Tid) {
3131
auto BufferOrError = getProcFile(getpid(), llvm::get_threadid(),
3232
#ifdef _AIX
@@ -38,4 +38,4 @@ TEST(Support, getProcFile_Tid) {
3838
ASSERT_TRUE(BufferOrError);
3939
ASSERT_TRUE(*BufferOrError);
4040
}
41-
#endif // #ifdef _AIX && LLVM_ENABLE_THREADING
41+
#endif // #if defined(_AIX) || defined(__linux__)

0 commit comments

Comments
 (0)