diff options
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lang')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/c/register_variables/test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/c/register_variables/test.c b/lldb/packages/Python/lldbsuite/test/lang/c/register_variables/test.c index f7fb1af1322..2c69039d40a 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/c/register_variables/test.c +++ b/lldb/packages/Python/lldbsuite/test/lang/c/register_variables/test.c @@ -1,6 +1,6 @@ #include <stdio.h> -#if defined(__arm__) || defined(__aarch64__) || defined (__mips__) +#if defined(__arm__) || defined(__aarch64__) || defined (__mips__) || defined(__powerpc64__) // Clang does not accept regparm attribute on these platforms. // Fortunately, the default calling convention passes arguments in registers // anyway. |