[compiler-rt] [compiler-rt] Fix `addtf3_test.c` being skipped due to misplaced include (PR #134106)
Kostiantyn Lazukin via llvm-commits
llvm-commits at lists.llvm.org
Wed Apr 2 09:01:16 PDT 2025
https://github.com/Sunday111 created https://github.com/llvm/llvm-project/pull/134106
[compiler-rt] The test `addtf3_test.c` is currently guarded by `#if defined(CRT_HAS_IEEE_TF)`, a macro that is declared in `int_lib.h`. However, `int_lib.h` is included *after* the preprocessor check, which results in the macro not being defined in time and causes the test to always be skipped.
This patch moves the includes of `fp_test.h` and `int_lib.h` to the top of the file so that `CRT_HAS_IEEE_TF` is defined before it is checked.
>From cdb99526dabcacaaaff496028959ed20c41c0a13 Mon Sep 17 00:00:00 2001
From: Kostiantyn Lazukin
<koslaz01 at ip-10-252-21-142.eu-west-1.compute.internal>
Date: Wed, 2 Apr 2025 12:42:51 +0000
Subject: [PATCH] [compiler-rt] Fix `addtf3_test.c` being skipped due to
misplaced include
The test `addtf3_test.c` is currently guarded by `#if defined(CRT_HAS_IEEE_TF)`,
a macro that is declared in `int_lib.h`. However, `int_lib.h` is included *after*
the preprocessor check, which results in the macro not being defined in time
and causes the test to always be skipped.
This patch moves the includes of `fp_test.h` and `int_lib.h` to the top of the
file so that `CRT_HAS_IEEE_TF` is defined before it is checked.
---
compiler-rt/test/builtins/Unit/addtf3_test.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/compiler-rt/test/builtins/Unit/addtf3_test.c b/compiler-rt/test/builtins/Unit/addtf3_test.c
index cd5872e7dedf4..30c3fddb82e79 100644
--- a/compiler-rt/test/builtins/Unit/addtf3_test.c
+++ b/compiler-rt/test/builtins/Unit/addtf3_test.c
@@ -4,14 +4,14 @@
#include <fenv.h>
#include <stdio.h>
+#include "fp_test.h"
+#include "int_lib.h"
+
// The testcase currently assumes IEEE TF format, once that has been
// fixed the defined(CRT_HAS_IEEE_TF) guard can be removed to enable it for
// IBM 128 floats as well.
#if defined(CRT_HAS_IEEE_TF)
-# include "fp_test.h"
-# include "int_lib.h"
-
// Returns: a + b
COMPILER_RT_ABI tf_float __addtf3(tf_float a, tf_float b);
More information about the llvm-commits
mailing list