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

Guillaume Chatelet via libc-commits libc-commits at lists.llvm.org
Mon Mar 11 09:53:50 PDT 2024


https://github.com/gchatelet created https://github.com/llvm/llvm-project/pull/84794

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


>From 48da32bb1954ffa700c245f41746f45860c45843 Mon Sep 17 00:00:00 2001
From: Guillaume Chatelet <gchatelet at google.com>
Date: Mon, 11 Mar 2024 16:53:25 +0000
Subject: [PATCH] [libc] Fix forward arm32 builtbot

Introduced by https://github.com/llvm/llvm-project/pull/83441.
---
 libc/test/src/string/memory_utils/CMakeLists.txt | 1 +
 libc/test/src/string/memory_utils/op_tests.cpp   | 1 +
 2 files changed, 2 insertions(+)

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