From 35ea0c6d5644c315210ab9b0b331723d5f7860dd Mon Sep 17 00:00:00 2001 From: Lang Hames Date: Mon, 12 Sep 2022 17:06:59 -0700 Subject: [PATCH] [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. --- compiler-rt/lib/orc/common.h | 2 +- compiler-rt/lib/orc/macho_ehframe_registration.cpp | 2 +- compiler-rt/lib/orc/tests/unit/c_api_test.cpp | 2 +- compiler-rt/lib/orc/wrapper_function_utils.h | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/compiler-rt/lib/orc/common.h b/compiler-rt/lib/orc/common.h index cfc54f3..5e01fee 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 /// 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 112f0dc..6e64706 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 e013c2a..ad3f055 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 715fcef..17aa8bb 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" -- 2.7.4