diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2017-06-16 21:04:22 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2017-06-16 21:04:22 +0000 |
commit | 4befb1f96d641a958548654b2c3b674f0ce8404c (patch) | |
tree | 664480204c546e55b123766a30e6fcf022c5486e /packages/Python/lldbsuite/test/lang/c | |
parent | f1d04915a666728c241bedb36bd99aafee3ea444 (diff) |
Notes
Diffstat (limited to 'packages/Python/lldbsuite/test/lang/c')
-rw-r--r-- | packages/Python/lldbsuite/test/lang/c/register_variables/test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/Python/lldbsuite/test/lang/c/register_variables/test.c b/packages/Python/lldbsuite/test/lang/c/register_variables/test.c index b95253ef9eea7..f7fb1af132205 100644 --- a/packages/Python/lldbsuite/test/lang/c/register_variables/test.c +++ b/packages/Python/lldbsuite/test/lang/c/register_variables/test.c @@ -1,6 +1,6 @@ #include <stdio.h> -#if defined(__arm__) || defined(__aarch64__) +#if defined(__arm__) || defined(__aarch64__) || defined (__mips__) // Clang does not accept regparm attribute on these platforms. // Fortunately, the default calling convention passes arguments in registers // anyway. |