[compiler-rt] [compiler-rt] Add missing carry to 128x128->256 wide multiply (PR #97257)

via llvm-commits llvm-commits at lists.llvm.org
Sun Jun 30 23:37:18 PDT 2024


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 8598bcb9934dca16ea16d87304e00defc85d986c 192e36876a5e2123bd1470920dc2745c71de29c8 -- compiler-rt/lib/builtins/fp_lib.h compiler-rt/test/builtins/Unit/multf3_test.c
``````````

</details>

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

``````````diff
diff --git a/compiler-rt/test/builtins/Unit/multf3_test.c b/compiler-rt/test/builtins/Unit/multf3_test.c
index ac56dc535b..0e561551d3 100644
--- a/compiler-rt/test/builtins/Unit/multf3_test.c
+++ b/compiler-rt/test/builtins/Unit/multf3_test.c
@@ -82,7 +82,7 @@ int main()
                      0x1.7fffffffffffffffffffffffffffp+1L,
                      UINT64_C(0x00017fffffffffff),
                      UINT64_C(0xfffffffffffffffc)))
-        return 1;
+      return 1;
 
 #else
     printf("skipped\n");

``````````

</details>


https://github.com/llvm/llvm-project/pull/97257


More information about the llvm-commits mailing list