Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions compiler-rt/test/builtins/Unit/fixunstfdi_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

#include <stdio.h>

#if _ARCH_PPC || __aarch64__ || __arm64ec__
#if (_ARCH_PPC || __aarch64__ || __arm64ec__) && defined(CRT_HAS_TF_MODE)

#include "int_lib.h"

Expand Down Expand Up @@ -35,7 +35,7 @@ char assumption_3[sizeof(long double)*CHAR_BIT == 128] = {0};

int main()
{
#if _ARCH_PPC || __aarch64__ || __arm64ec__
#if (_ARCH_PPC || __aarch64__ || __arm64ec__) && defined(CRT_HAS_TF_MODE)
if (test__fixunstfdi(0.0, 0))
return 1;

Expand Down
4 changes: 2 additions & 2 deletions compiler-rt/test/builtins/Unit/multc3_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

#include <stdio.h>

#if _ARCH_PPC || __aarch64__ || __arm64ec__
#if (_ARCH_PPC || __aarch64__ || __arm64ec__) && defined(CRT_HAS_128BIT) && defined(CRT_HAS_F128)

#include "int_lib.h"
#include <math.h>
Expand Down Expand Up @@ -348,7 +348,7 @@ long double x[][2] =

int main()
{
#if _ARCH_PPC || __aarch64__ || __arm64ec__
#if (_ARCH_PPC || __aarch64__ || __arm64ec__) && defined(CRT_HAS_128BIT) && defined(CRT_HAS_F128)
const unsigned N = sizeof(x) / sizeof(x[0]);
unsigned i, j;
for (i = 0; i < N; ++i)
Expand Down
Loading