[compiler-rt] Fix suffix in truncxfhf2_test (PR #121388)

B I Mohammed Abbas via llvm-commits llvm-commits at lists.llvm.org
Tue Dec 31 03:50:54 PST 2024


https://github.com/biabbas created https://github.com/llvm/llvm-project/pull/121388

Fix typo introduced by #120372 
r? @rorth, @arichardson 


Regards,



>From 5077d21855cb9b3bb05fdad8bb852275f4e86338 Mon Sep 17 00:00:00 2001
From: B I Mohammed Abbas <bimohammadabbas at gmail.com>
Date: Tue, 31 Dec 2024 17:18:29 +0530
Subject: [PATCH] Fix suffix in truncxfhf2_test

---
 compiler-rt/test/builtins/Unit/truncxfhf2_test.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/compiler-rt/test/builtins/Unit/truncxfhf2_test.c b/compiler-rt/test/builtins/Unit/truncxfhf2_test.c
index 9038a91a5b4c1a..b5e2a91f0b930e 100644
--- a/compiler-rt/test/builtins/Unit/truncxfhf2_test.c
+++ b/compiler-rt/test/builtins/Unit/truncxfhf2_test.c
@@ -48,17 +48,17 @@ int main() {
 
   // Positive infinity
   if (test_truncxfhf2(UINT16_C(0x7fff), UINT64_C(0x8000000000000000),
-                      UINT16_C(0x7c00U)))
+                      UINT16_C(0x7c00)))
     return 1;
 
   // Negative infinity
   if (test_truncxfhf2(UINT16_C(0xffff), UINT64_C(0x8000000000000000),
-                      UINT16_C(0xfc00U)))
+                      UINT16_C(0xfc00)))
     return 1;
 
   // NaN
   if (test_truncxfhf2(UINT16_C(0x7fff), UINT64_C(0xc000000000000000),
-                      UINT16_C(0x7e00U)))
+                      UINT16_C(0x7e00)))
     return 1;
 
   return 0;



More information about the llvm-commits mailing list