diff options
Diffstat (limited to 'compiler-rt/test/builtins/Unit/udivmodti4_test.c')
-rw-r--r-- | compiler-rt/test/builtins/Unit/udivmodti4_test.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler-rt/test/builtins/Unit/udivmodti4_test.c b/compiler-rt/test/builtins/Unit/udivmodti4_test.c index e0cae35ea7a..751aa868325 100644 --- a/compiler-rt/test/builtins/Unit/udivmodti4_test.c +++ b/compiler-rt/test/builtins/Unit/udivmodti4_test.c @@ -11,11 +11,11 @@ // //===----------------------------------------------------------------------===// -#if __x86_64 - #include "int_lib.h" #include <stdio.h> +#ifdef CRT_HAS_128BIT + // Effects: if rem != 0, *rem = a % b // Returns: a / b @@ -65339,7 +65339,7 @@ tu_int tests[][4] = int main() { -#if __x86_64 +#ifdef CRT_HAS_128BIT const unsigned N = sizeof(tests) / sizeof(tests[0]); unsigned i; for (i = 0; i < N; ++i) |