diff options
| author | Joerg Sonnenberger <joerg@bec.de> | 2014-03-18 21:35:30 +0000 |
|---|---|---|
| committer | Joerg Sonnenberger <joerg@bec.de> | 2014-03-18 21:35:30 +0000 |
| commit | 14743127b75d38da0f84c1beeb093d58c325a667 (patch) | |
| tree | 5659e1f3f5413a22874f680d09cfe08c9720aedf /compiler-rt/test/builtins/Unit/fixunsdfti_test.c | |
| parent | c42c219d5794b9b747ffeb147ba7a0b1f2ebe0ed (diff) | |
| download | bcm5719-llvm-14743127b75d38da0f84c1beeb093d58c325a667.tar.gz bcm5719-llvm-14743127b75d38da0f84c1beeb093d58c325a667.zip | |
Use CRT_HAS_128BIT.
llvm-svn: 204182
Diffstat (limited to 'compiler-rt/test/builtins/Unit/fixunsdfti_test.c')
| -rw-r--r-- | compiler-rt/test/builtins/Unit/fixunsdfti_test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler-rt/test/builtins/Unit/fixunsdfti_test.c b/compiler-rt/test/builtins/Unit/fixunsdfti_test.c index 1e44b82660c..9f89de49368 100644 --- a/compiler-rt/test/builtins/Unit/fixunsdfti_test.c +++ b/compiler-rt/test/builtins/Unit/fixunsdfti_test.c @@ -24,7 +24,7 @@ // seee eeee eeee mmmm mmmm mmmm mmmm mmmm | mmmm mmmm mmmm mmmm mmmm mmmm mmmm mmmm -#if __x86_64 +#ifdef CRT_HAS_128BIT tu_int __fixunsdfti(double a); @@ -51,7 +51,7 @@ char assumption_3[sizeof(double)*CHAR_BIT == 64] = {0}; int main() { -#if __x86_64 +#ifdef CRT_HAS_128BIT if (test__fixunsdfti(0.0, 0)) return 1; |

