[Lldb-commits] [lldb] 1138a49 - [lldb] Fix build problem in llgs tests for RISC-V (#127091)
via lldb-commits
lldb-commits at lists.llvm.org
Thu Feb 13 08:48:08 PST 2025
Author: Georgiy Samoylov
Date: 2025-02-13T16:48:03Z
New Revision: 1138a4964adf76cc4af82b3f43dbc8db0b91cd46
URL: https://github.com/llvm/llvm-project/commit/1138a4964adf76cc4af82b3f43dbc8db0b91cd46
DIFF: https://github.com/llvm/llvm-project/commit/1138a4964adf76cc4af82b3f43dbc8db0b91cd46.diff
LOG: [lldb] Fix build problem in llgs tests for RISC-V (#127091)
During testing of LLDB on RISC-V target, tests from the llgs category
were built with an error: `Error when building test subject.`
```
llvm-project/lldb/test/API/tools/lldb-server/main.cpp:151:40: error: missing ')' after '__builtin_debugtrap'
151 | #elif __has_builtin(__builtin_debugtrap())
| ~~~~~~~~~~~~~~~~~~~^
llvm-project/lldb/test/API/tools/lldb-server/main.cpp:151:20: note: to match this '('
151 | #elif __has_builtin(__builtin_debugtrap())
| ^
```
This patch fixes this error.
Added:
Modified:
lldb/test/API/tools/lldb-server/main.cpp
Removed:
################################################################################
diff --git a/lldb/test/API/tools/lldb-server/main.cpp b/lldb/test/API/tools/lldb-server/main.cpp
index 5d33ee6e1b0ba..484da8aa4bef9 100644
--- a/lldb/test/API/tools/lldb-server/main.cpp
+++ b/lldb/test/API/tools/lldb-server/main.cpp
@@ -148,7 +148,7 @@ static void trap() {
asm volatile("udf #254");
#elif defined(__powerpc__)
asm volatile("trap");
-#elif __has_builtin(__builtin_debugtrap())
+#elif __has_builtin(__builtin_debugtrap)
__builtin_debugtrap();
#else
#warning Don't know how to generate a trap. Some tests may fail.
More information about the lldb-commits
mailing list