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/floatdidfnew_test.c 
compiler-rt/test/builtins/Unit/floatdisfnew_test.c 
compiler-rt/test/builtins/Unit/floatsidfnew_test.c 
compiler-rt/test/builtins/Unit/floatsisfnew_test.c 
compiler-rt/test/builtins/Unit/floatunsdidfnew_test.c 
compiler-rt/test/builtins/Unit/floatunsdisfnew_test.c 
compiler-rt/test/builtins/Unit/floatunssidfnew_test.c 
compiler-rt/test/builtins/Unit/floatunssisfnew_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/floatdidfnew_test.c 
b/compiler-rt/test/builtins/Unit/floatdidfnew_test.c
index 601be3f57..037961e5e 100644
--- a/compiler-rt/test/builtins/Unit/floatdidfnew_test.c
+++ b/compiler-rt/test/builtins/Unit/floatdidfnew_test.c
@@ -26,7 +26,7 @@ int test__floatdidf(int line, uint64_t a, uint64_t 
expected_rep) {
   return ret;
 }
 
-#define test__floatdidf(a,x) test__floatdidf(__LINE__,a,x)
+#define test__floatdidf(a, x) test__floatdidf(__LINE__, a, x)
 
 int main(void) {
   int status = 0;
diff --git a/compiler-rt/test/builtins/Unit/floatdisfnew_test.c 
b/compiler-rt/test/builtins/Unit/floatdisfnew_test.c
index 66a719376..f33e88c25 100644
--- a/compiler-rt/test/builtins/Unit/floatdisfnew_test.c
+++ b/compiler-rt/test/builtins/Unit/floatdisfnew_test.c
@@ -26,7 +26,7 @@ int test__floatdisf(int line, uint64_t a, uint32_t 
expected_rep) {
   return ret;
 }
 
-#define test__floatdisf(a,x) test__floatdisf(__LINE__,a,x)
+#define test__floatdisf(a, x) test__floatdisf(__LINE__, a, x)
 
 int main(void) {
   int status = 0;
diff --git a/compiler-rt/test/builtins/Unit/floatsidfnew_test.c 
b/compiler-rt/test/builtins/Unit/floatsidfnew_test.c
index 55ccca3c8..b040c8372 100644
--- a/compiler-rt/test/builtins/Unit/floatsidfnew_test.c
+++ b/compiler-rt/test/builtins/Unit/floatsidfnew_test.c
@@ -26,7 +26,7 @@ int test__floatsidf(int line, uint32_t a, uint64_t 
expected_rep) {
   return ret;
 }
 
-#define test__floatsidf(a,x) test__floatsidf(__LINE__,a,x)
+#define test__floatsidf(a, x) test__floatsidf(__LINE__, a, x)
 
 int main(void) {
   int status = 0;
diff --git a/compiler-rt/test/builtins/Unit/floatsisfnew_test.c 
b/compiler-rt/test/builtins/Unit/floatsisfnew_test.c
index ef718f15f..ae4ec0b69 100644
--- a/compiler-rt/test/builtins/Unit/floatsisfnew_test.c
+++ b/compiler-rt/test/builtins/Unit/floatsisfnew_test.c
@@ -26,7 +26,7 @@ int test__floatsisf(int line, uint32_t a, uint32_t 
expected_rep) {
   return ret;
 }
 
-#define test__floatsisf(a,x) test__floatsisf(__LINE__,a,x)
+#define test__floatsisf(a, x) test__floatsisf(__LINE__, a, x)
 
 int main(void) {
   int status = 0;
diff --git a/compiler-rt/test/builtins/Unit/floatunsdidfnew_test.c 
b/compiler-rt/test/builtins/Unit/floatunsdidfnew_test.c
index 7199e0258..c9a9f396e 100644
--- a/compiler-rt/test/builtins/Unit/floatunsdidfnew_test.c
+++ b/compiler-rt/test/builtins/Unit/floatunsdidfnew_test.c
@@ -26,7 +26,7 @@ int test__floatunsdidf(int line, uint64_t a, uint64_t 
expected_rep) {
   return ret;
 }
 
-#define test__floatunsdidf(a,x) test__floatunsdidf(__LINE__,a,x)
+#define test__floatunsdidf(a, x) test__floatunsdidf(__LINE__, a, x)
 
 int main(void) {
   int status = 0;
diff --git a/compiler-rt/test/builtins/Unit/floatunsdisfnew_test.c 
b/compiler-rt/test/builtins/Unit/floatunsdisfnew_test.c
index f2d77da16..d0b625983 100644
--- a/compiler-rt/test/builtins/Unit/floatunsdisfnew_test.c
+++ b/compiler-rt/test/builtins/Unit/floatunsdisfnew_test.c
@@ -26,7 +26,7 @@ int test__floatunsdisf(int line, uint64_t a, uint32_t 
expected_rep) {
   return ret;
 }
 
-#define test__floatunsdisf(a,x) test__floatunsdisf(__LINE__,a,x)
+#define test__floatunsdisf(a, x) test__floatunsdisf(__LINE__, a, x)
 
 int main(void) {
   int status = 0;
diff --git a/compiler-rt/test/builtins/Unit/floatunssidfnew_test.c 
b/compiler-rt/test/builtins/Unit/floatunssidfnew_test.c
index 07e1ad392..6356d9a23 100644
--- a/compiler-rt/test/builtins/Unit/floatunssidfnew_test.c
+++ b/compiler-rt/test/builtins/Unit/floatunssidfnew_test.c
@@ -26,7 +26,7 @@ int test__floatunssidf(int line, uint32_t a, uint64_t 
expected_rep) {
   return ret;
 }
 
-#define test__floatunssidf(a,x) test__floatunssidf(__LINE__,a,x)
+#define test__floatunssidf(a, x) test__floatunssidf(__LINE__, a, x)
 
 int main(void) {
   int status = 0;
diff --git a/compiler-rt/test/builtins/Unit/floatunssisfnew_test.c 
b/compiler-rt/test/builtins/Unit/floatunssisfnew_test.c
index 5ec0cc742..8d7bf5915 100644
--- a/compiler-rt/test/builtins/Unit/floatunssisfnew_test.c
+++ b/compiler-rt/test/builtins/Unit/floatunssisfnew_test.c
@@ -26,7 +26,7 @@ int test__floatunssisf(int line, uint32_t a, uint32_t 
expected_rep) {
   return ret;
 }
 
-#define test__floatunssisf(a,x) test__floatunssisf(__LINE__,a,x)
+#define test__floatunssisf(a, x) test__floatunssisf(__LINE__, a, x)
 
 int main(void) {
   int status = 0;

``````````

</details>


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

Reply via email to