[ORC-RT] Remove some stale comments.
authorLang Hames <lhames@gmail.com>
Sun, 16 Jan 2022 03:03:15 +0000 (14:03 +1100)
committerLang Hames <lhames@gmail.com>
Sun, 16 Jan 2022 03:03:15 +0000 (14:03 +1100)
We switched to SPS serialization for these functions in 089acf25223d2.

compiler-rt/lib/orc/macho_platform.cpp

index e2666aa..f2cca8e 100644 (file)
@@ -593,8 +593,6 @@ __orc_rt_macho_platform_shutdown(char *ArgData, size_t ArgSize) {
 
 ORC_RT_INTERFACE __orc_rt_CWrapperFunctionResult
 __orc_rt_macho_register_thread_data_section(char *ArgData, size_t ArgSize) {
-  // NOTE: Does not use SPS to deserialize arg buffer, instead the arg buffer
-  // is taken to be the range of the thread data section.
   return WrapperFunction<SPSError(SPSExecutorAddrRange)>::handle(
              ArgData, ArgSize,
              [](ExecutorAddrRange R) {
@@ -606,8 +604,6 @@ __orc_rt_macho_register_thread_data_section(char *ArgData, size_t ArgSize) {
 
 ORC_RT_INTERFACE __orc_rt_CWrapperFunctionResult
 __orc_rt_macho_deregister_thread_data_section(char *ArgData, size_t ArgSize) {
-  // NOTE: Does not use SPS to deserialize arg buffer, instead the arg buffer
-  // is taken to be the range of the thread data section.
   return WrapperFunction<SPSError(SPSExecutorAddrRange)>::handle(
              ArgData, ArgSize,
              [](ExecutorAddrRange R) {