github-actions[bot] wrote:

<!--LLVM CODE FORMAT COMMENT: {clang-format}-->


:warning: C/C++ code formatter, clang-format found issues in your code. 
:warning:

<details>
<summary>
You can test this locally with the following command:
</summary>

``````````bash
git-clang-format --diff origin/main HEAD --extensions c -- 
compiler-rt/test/builtins/Unit/fixdfdinew_test.c 
compiler-rt/test/builtins/Unit/fixdfsinew_test.c 
compiler-rt/test/builtins/Unit/fixsfdinew_test.c 
compiler-rt/test/builtins/Unit/fixsfsinew_test.c 
compiler-rt/test/builtins/Unit/fixunsdfdinew_test.c 
compiler-rt/test/builtins/Unit/fixunsdfsinew_test.c 
compiler-rt/test/builtins/Unit/fixunssfdinew_test.c 
compiler-rt/test/builtins/Unit/fixunssfsinew_test.c --diff_from_common_commit
``````````

:warning:
The reproduction instructions above might return results for more than one PR
in a stack if you are using a stacked PR workflow. You can limit the results by
changing `origin/main` to the base branch/commit you want to compare against.
:warning:

</details>

<details>
<summary>
View the diff from clang-format here.
</summary>

``````````diff
diff --git a/compiler-rt/test/builtins/Unit/fixdfdinew_test.c 
b/compiler-rt/test/builtins/Unit/fixdfdinew_test.c
index a8bcbf72f..1f0dbb341 100644
--- a/compiler-rt/test/builtins/Unit/fixdfdinew_test.c
+++ b/compiler-rt/test/builtins/Unit/fixdfdinew_test.c
@@ -16,7 +16,7 @@
 // optimized FP implementation, which commits to more detail, we include some
 // extra test cases specific to that NaN policy.
 #if (__arm__ && !(__thumb__ && !__thumb2__)) && COMPILER_RT_ARM_OPTIMIZED_FP
-#define ARM_INVALID_HANDLING
+#  define ARM_INVALID_HANDLING
 #endif
 
 // Returns: a converted from double to int64_t
@@ -35,7 +35,7 @@ int test__fixdfdi(int line, uint64_t a_rep, uint64_t 
expected) {
   return ret;
 }
 
-#define test__fixdfdi(a,x) test__fixdfdi(__LINE__,a,x)
+#define test__fixdfdi(a, x) test__fixdfdi(__LINE__, a, x)
 
 int main(void) {
   int status = 0;
diff --git a/compiler-rt/test/builtins/Unit/fixdfsinew_test.c 
b/compiler-rt/test/builtins/Unit/fixdfsinew_test.c
index bf3944ea6..7ddf04b6e 100644
--- a/compiler-rt/test/builtins/Unit/fixdfsinew_test.c
+++ b/compiler-rt/test/builtins/Unit/fixdfsinew_test.c
@@ -16,7 +16,7 @@
 // optimized FP implementation, which commits to more detail, we include some
 // extra test cases specific to that NaN policy.
 #if (__arm__ && !(__thumb__ && !__thumb2__)) && COMPILER_RT_ARM_OPTIMIZED_FP
-#define ARM_INVALID_HANDLING
+#  define ARM_INVALID_HANDLING
 #endif
 
 // Returns: a converted from double to int32_t
@@ -35,7 +35,7 @@ int test__fixdfsi(int line, uint64_t a_rep, uint32_t 
expected) {
   return ret;
 }
 
-#define test__fixdfsi(a,x) test__fixdfsi(__LINE__,a,x)
+#define test__fixdfsi(a, x) test__fixdfsi(__LINE__, a, x)
 
 int main(void) {
   int status = 0;
diff --git a/compiler-rt/test/builtins/Unit/fixsfdinew_test.c 
b/compiler-rt/test/builtins/Unit/fixsfdinew_test.c
index 6a719c314..d624fd168 100644
--- a/compiler-rt/test/builtins/Unit/fixsfdinew_test.c
+++ b/compiler-rt/test/builtins/Unit/fixsfdinew_test.c
@@ -16,7 +16,7 @@
 // optimized FP implementation, which commits to more detail, we include some
 // extra test cases specific to that NaN policy.
 #if (__arm__ && !(__thumb__ && !__thumb2__)) && COMPILER_RT_ARM_OPTIMIZED_FP
-#define ARM_INVALID_HANDLING
+#  define ARM_INVALID_HANDLING
 #endif
 
 // Returns: a converted from float to int64_t
@@ -35,7 +35,7 @@ int test__fixsfdi(int line, uint32_t a_rep, uint64_t 
expected) {
   return ret;
 }
 
-#define test__fixsfdi(a,x) test__fixsfdi(__LINE__,a,x)
+#define test__fixsfdi(a, x) test__fixsfdi(__LINE__, a, x)
 
 int main(void) {
   int status = 0;
diff --git a/compiler-rt/test/builtins/Unit/fixsfsinew_test.c 
b/compiler-rt/test/builtins/Unit/fixsfsinew_test.c
index 12475a5e4..f1adba5ec 100644
--- a/compiler-rt/test/builtins/Unit/fixsfsinew_test.c
+++ b/compiler-rt/test/builtins/Unit/fixsfsinew_test.c
@@ -16,7 +16,7 @@
 // optimized FP implementation, which commits to more detail, we include some
 // extra test cases specific to that NaN policy.
 #if (__arm__ && !(__thumb__ && !__thumb2__)) && COMPILER_RT_ARM_OPTIMIZED_FP
-#define ARM_INVALID_HANDLING
+#  define ARM_INVALID_HANDLING
 #endif
 
 // Returns: a converted from float to int32_t
@@ -35,7 +35,7 @@ int test__fixsfsi(int line, uint32_t a_rep, uint32_t 
expected) {
   return ret;
 }
 
-#define test__fixsfsi(a,x) test__fixsfsi(__LINE__,a,x)
+#define test__fixsfsi(a, x) test__fixsfsi(__LINE__, a, x)
 
 int main(void) {
   int status = 0;
diff --git a/compiler-rt/test/builtins/Unit/fixunsdfdinew_test.c 
b/compiler-rt/test/builtins/Unit/fixunsdfdinew_test.c
index 9d8746944..7074a727c 100644
--- a/compiler-rt/test/builtins/Unit/fixunsdfdinew_test.c
+++ b/compiler-rt/test/builtins/Unit/fixunsdfdinew_test.c
@@ -16,7 +16,7 @@
 // optimized FP implementation, which commits to more detail, we include some
 // extra test cases specific to that NaN policy.
 #if (__arm__ && !(__thumb__ && !__thumb2__)) && COMPILER_RT_ARM_OPTIMIZED_FP
-#define ARM_INVALID_HANDLING
+#  define ARM_INVALID_HANDLING
 #endif
 
 // Returns: a converted from double to int64_t
@@ -35,7 +35,7 @@ int test__fixunsdfdi(int line, uint64_t a_rep, uint64_t 
expected) {
   return ret;
 }
 
-#define test__fixunsdfdi(a,x) test__fixunsdfdi(__LINE__,a,x)
+#define test__fixunsdfdi(a, x) test__fixunsdfdi(__LINE__, a, x)
 
 int main(void) {
   int status = 0;
diff --git a/compiler-rt/test/builtins/Unit/fixunsdfsinew_test.c 
b/compiler-rt/test/builtins/Unit/fixunsdfsinew_test.c
index a15bda5cb..056c3241b 100644
--- a/compiler-rt/test/builtins/Unit/fixunsdfsinew_test.c
+++ b/compiler-rt/test/builtins/Unit/fixunsdfsinew_test.c
@@ -16,7 +16,7 @@
 // optimized FP implementation, which commits to more detail, we include some
 // extra test cases specific to that NaN policy.
 #if (__arm__ && !(__thumb__ && !__thumb2__)) && COMPILER_RT_ARM_OPTIMIZED_FP
-#define ARM_INVALID_HANDLING
+#  define ARM_INVALID_HANDLING
 #endif
 
 // Returns: a converted from double to uint32_t
@@ -35,7 +35,7 @@ int test__fixunsdfsi(int line, uint64_t a_rep, uint32_t 
expected) {
   return ret;
 }
 
-#define test__fixunsdfsi(a,x) test__fixunsdfsi(__LINE__,a,x)
+#define test__fixunsdfsi(a, x) test__fixunsdfsi(__LINE__, a, x)
 
 int main(void) {
   int status = 0;
diff --git a/compiler-rt/test/builtins/Unit/fixunssfdinew_test.c 
b/compiler-rt/test/builtins/Unit/fixunssfdinew_test.c
index 43021f4d9..d0f5796e9 100644
--- a/compiler-rt/test/builtins/Unit/fixunssfdinew_test.c
+++ b/compiler-rt/test/builtins/Unit/fixunssfdinew_test.c
@@ -16,7 +16,7 @@
 // optimized FP implementation, which commits to more detail, we include some
 // extra test cases specific to that NaN policy.
 #if (__arm__ && !(__thumb__ && !__thumb2__)) && COMPILER_RT_ARM_OPTIMIZED_FP
-#define ARM_INVALID_HANDLING
+#  define ARM_INVALID_HANDLING
 #endif
 
 // Returns: a converted from float to int64_t
@@ -35,7 +35,7 @@ int test__fixunssfdi(int line, uint32_t a_rep, uint64_t 
expected) {
   return ret;
 }
 
-#define test__fixunssfdi(a,x) test__fixunssfdi(__LINE__,a,x)
+#define test__fixunssfdi(a, x) test__fixunssfdi(__LINE__, a, x)
 
 int main(void) {
   int status = 0;
diff --git a/compiler-rt/test/builtins/Unit/fixunssfsinew_test.c 
b/compiler-rt/test/builtins/Unit/fixunssfsinew_test.c
index 0f2774c71..70d05a287 100644
--- a/compiler-rt/test/builtins/Unit/fixunssfsinew_test.c
+++ b/compiler-rt/test/builtins/Unit/fixunssfsinew_test.c
@@ -16,7 +16,7 @@
 // optimized FP implementation, which commits to more detail, we include some
 // extra test cases specific to that NaN policy.
 #if (__arm__ && !(__thumb__ && !__thumb2__)) && COMPILER_RT_ARM_OPTIMIZED_FP
-#define ARM_INVALID_HANDLING
+#  define ARM_INVALID_HANDLING
 #endif
 
 // Returns: a converted from float to uint32_t
@@ -35,7 +35,7 @@ int test__fixunssfsi(int line, uint32_t a_rep, uint32_t 
expected) {
   return ret;
 }
 
-#define test__fixunssfsi(a,x) test__fixunssfsi(__LINE__,a,x)
+#define test__fixunssfsi(a, x) test__fixunssfsi(__LINE__, a, x)
 
 int main(void) {
   int status = 0;

``````````

</details>


https://github.com/llvm/llvm-project/pull/179927
_______________________________________________
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits

Reply via email to