[compiler-rt] 35ea0c6 - [ORC-RT] Update headers for rename of include/orc in a85e4aa37de.

Lang Hames via llvm-commits llvm-commits at lists.llvm.org
Mon Sep 12 17:09:18 PDT 2022


Author: Lang Hames
Date: 2022-09-12T17:09:06-07:00
New Revision: 35ea0c6d5644c315210ab9b0b331723d5f7860dd

URL: https://github.com/llvm/llvm-project/commit/35ea0c6d5644c315210ab9b0b331723d5f7860dd
DIFF: https://github.com/llvm/llvm-project/commit/35ea0c6d5644c315210ab9b0b331723d5f7860dd.diff

LOG: [ORC-RT] Update headers for rename of include/orc in a85e4aa37de.

The ORC runtime include directory was renamed from 'orc' to 'orc_rt' in
a85e4aa37de. Update includes to match.

Added: 
    

Modified: 
    compiler-rt/lib/orc/common.h
    compiler-rt/lib/orc/macho_ehframe_registration.cpp
    compiler-rt/lib/orc/tests/unit/c_api_test.cpp
    compiler-rt/lib/orc/wrapper_function_utils.h

Removed: 
    


################################################################################
diff  --git a/compiler-rt/lib/orc/common.h b/compiler-rt/lib/orc/common.h
index cfc54f3c4228d..5e01feee759be 100644
--- a/compiler-rt/lib/orc/common.h
+++ b/compiler-rt/lib/orc/common.h
@@ -14,7 +14,7 @@
 #define ORC_RT_COMMON_H
 
 #include "compiler.h"
-#include "orc/c_api.h"
+#include "orc_rt/c_api.h"
 #include <type_traits>
 
 /// This macro should be used to define tags that will be associated with

diff  --git a/compiler-rt/lib/orc/macho_ehframe_registration.cpp b/compiler-rt/lib/orc/macho_ehframe_registration.cpp
index 112f0dc390a64..6e647064d9324 100644
--- a/compiler-rt/lib/orc/macho_ehframe_registration.cpp
+++ b/compiler-rt/lib/orc/macho_ehframe_registration.cpp
@@ -13,7 +13,7 @@
 #include "adt.h"
 #include "common.h"
 #include "executor_address.h"
-#include "orc/c_api.h"
+#include "orc_rt/c_api.h"
 #include "wrapper_function_utils.h"
 
 using namespace __orc_rt;

diff  --git a/compiler-rt/lib/orc/tests/unit/c_api_test.cpp b/compiler-rt/lib/orc/tests/unit/c_api_test.cpp
index e013c2a9bce56..ad3f055b8253c 100644
--- a/compiler-rt/lib/orc/tests/unit/c_api_test.cpp
+++ b/compiler-rt/lib/orc/tests/unit/c_api_test.cpp
@@ -10,7 +10,7 @@
 //
 //===----------------------------------------------------------------------===//
 
-#include "orc/c_api.h"
+#include "orc_rt/c_api.h"
 #include "gtest/gtest.h"
 
 TEST(CAPITest, CWrapperFunctionResultInit) {

diff  --git a/compiler-rt/lib/orc/wrapper_function_utils.h b/compiler-rt/lib/orc/wrapper_function_utils.h
index 715fcef751393..17aa8bb671fd7 100644
--- a/compiler-rt/lib/orc/wrapper_function_utils.h
+++ b/compiler-rt/lib/orc/wrapper_function_utils.h
@@ -13,7 +13,7 @@
 #ifndef ORC_RT_WRAPPER_FUNCTION_UTILS_H
 #define ORC_RT_WRAPPER_FUNCTION_UTILS_H
 
-#include "orc/c_api.h"
+#include "orc_rt/c_api.h"
 #include "common.h"
 #include "error.h"
 #include "executor_address.h"


        


More information about the llvm-commits mailing list