[llvm] [orc-rt] Fix header list in CMakeLists.txt after 6af1247ecb9. (PR #156867)

Lang Hames via llvm-commits llvm-commits at lists.llvm.org
Thu Sep 4 04:56:00 PDT 2025


https://github.com/lhames created https://github.com/llvm/llvm-project/pull/156867

6af1247ecb9 renamed both C and C++ WrapperFunctionResult.h headers to WrapperFunction.h. This commit updates CMakeLists.txt to reflect that change.

>From 3050d864fab30abc69b1fa1e03fa51e8256ff020 Mon Sep 17 00:00:00 2001
From: Lang Hames <lhames at gmail.com>
Date: Thu, 4 Sep 2025 21:47:54 +1000
Subject: [PATCH] [orc-rt] Fix header list in CMakeLists.txt after 6af1247ecb9.

6af1247ecb9 renamed both C and C++ WrapperFunctionResult.h headers to
WrapperFunction.h. This commit updates CMakeLists.txt to reflect that
change.
---
 orc-rt/include/CMakeLists.txt | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/orc-rt/include/CMakeLists.txt b/orc-rt/include/CMakeLists.txt
index a270fd7c06c73..eb0088fe4061a 100644
--- a/orc-rt/include/CMakeLists.txt
+++ b/orc-rt/include/CMakeLists.txt
@@ -1,6 +1,6 @@
 set(ORC_RT_HEADERS
     orc-rt-c/ExternC.h
-    orc-rt-c/WrapperFunctionResult.h
+    orc-rt-c/WrapperFunction.h
     orc-rt-c/orc-rt.h
     orc-rt/BitmaskEnum.h
     orc-rt/Compiler.h
@@ -10,7 +10,7 @@ set(ORC_RT_HEADERS
     orc-rt/IntervalSet.h
     orc-rt/Math.h
     orc-rt/RTTI.h
-    orc-rt/WrapperFunctionResult.h
+    orc-rt/WrapperFunction.h
     orc-rt/SimplePackedSerialization.h
     orc-rt/bind.h
     orc-rt/bit.h



More information about the llvm-commits mailing list