[mlir][async] Update comments about library registration. (NFC)
authorIngo Müller <ingomueller@google.com>
Fri, 16 Jun 2023 15:28:44 +0000 (15:28 +0000)
committerIngo Müller <ingomueller@google.com>
Fri, 16 Jun 2023 18:03:53 +0000 (18:03 +0000)
This updates the code comments about the library registration mechanism,
which changed in https://reviews.llvm.org/D153029, and which should have
updated as part of that patch.

Reviewed By: ingomueller-net

Differential Revision: https://reviews.llvm.org/D153147

mlir/lib/ExecutionEngine/AsyncRuntime.cpp

index d7c09f9..878f859 100644 (file)
@@ -452,10 +452,11 @@ extern "C" void mlirAsyncRuntimePrintCurrentThreadId() {
 }
 
 //===----------------------------------------------------------------------===//
-// MLIR Runner (JitRunner) dynamic library integration.
+// MLIR ExecutionEngine dynamic library integration.
 //===----------------------------------------------------------------------===//
 
-// Export symbols for the MLIR runner integration. All other symbols are hidden.
+// Export symbols for the MLIR ExecutionEngine integration. All other symbols
+// are hidden.
 #ifdef _WIN32
 #define API __declspec(dllexport)
 #else