[libc-commits] [libc] 07d7b9c - [libc] Fix forward arm32 builtbot (#84794)

via libc-commits libc-commits at lists.llvm.org
Mon Mar 11 10:17:23 PDT 2024


Author: Guillaume Chatelet
Date: 2024-03-11T18:17:18+01:00
New Revision: 07d7b9c255078edc6f04bd4e68416bdf3e8735ab

URL: https://github.com/llvm/llvm-project/commit/07d7b9c255078edc6f04bd4e68416bdf3e8735ab
DIFF: https://github.com/llvm/llvm-project/commit/07d7b9c255078edc6f04bd4e68416bdf3e8735ab.diff

LOG: [libc] Fix forward arm32 builtbot (#84794)

Introduced by https://github.com/llvm/llvm-project/pull/83441.

Added: 
    

Modified: 
    libc/test/src/string/memory_utils/CMakeLists.txt
    libc/test/src/string/memory_utils/op_tests.cpp

Removed: 
    


################################################################################
diff  --git a/libc/test/src/string/memory_utils/CMakeLists.txt b/libc/test/src/string/memory_utils/CMakeLists.txt
index 567f85e37bfab4..a0dddd2f97b585 100644
--- a/libc/test/src/string/memory_utils/CMakeLists.txt
+++ b/libc/test/src/string/memory_utils/CMakeLists.txt
@@ -12,6 +12,7 @@ add_libc_test(
     libc.src.__support.CPP.array
     libc.src.__support.CPP.cstddef
     libc.src.__support.CPP.span
+    libc.src.__support.macros.properties.types
     libc.src.__support.macros.sanitizer
     libc.src.string.memory_utils.memory_utils
   UNIT_TEST_ONLY

diff  --git a/libc/test/src/string/memory_utils/op_tests.cpp b/libc/test/src/string/memory_utils/op_tests.cpp
index 95a04755eb4dbe..703a26b16b03f0 100644
--- a/libc/test/src/string/memory_utils/op_tests.cpp
+++ b/libc/test/src/string/memory_utils/op_tests.cpp
@@ -10,6 +10,7 @@
 #include "src/__support/macros/properties/types.h" // LIBC_TYPES_HAS_INT64
 #include "src/string/memory_utils/op_aarch64.h"
 #include "src/string/memory_utils/op_builtin.h"
+#include "src/string/memory_utils/op_generic.h"
 #include "src/string/memory_utils/op_riscv.h"
 #include "src/string/memory_utils/op_x86.h"
 #include "test/UnitTest/Test.h"


        


More information about the libc-commits mailing list