aboutsummaryrefslogtreecommitdiff
path: root/mlir/lib/ExecutionEngine/AsyncRuntime.cpp
diff options
context:
space:
mode:
authorIngo Müller <ingomueller@google.com>2023-06-16 15:28:44 +0000
committerIngo Müller <ingomueller@google.com>2023-06-16 18:03:53 +0000
commit530db6a3b44cfbe59c32dba4fe6b7f25a0e9390c (patch)
treec10a17944255d3d915f3b993a56f634e6a184dc1 /mlir/lib/ExecutionEngine/AsyncRuntime.cpp
parentd6b4f6786ba5d061d5d5822dd391682dd7185e71 (diff)
downloadllvm-530db6a3b44cfbe59c32dba4fe6b7f25a0e9390c.zip
llvm-530db6a3b44cfbe59c32dba4fe6b7f25a0e9390c.tar.gz
llvm-530db6a3b44cfbe59c32dba4fe6b7f25a0e9390c.tar.bz2
[mlir][async] Update comments about library registration. (NFC)
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
Diffstat (limited to 'mlir/lib/ExecutionEngine/AsyncRuntime.cpp')
-rw-r--r--mlir/lib/ExecutionEngine/AsyncRuntime.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/mlir/lib/ExecutionEngine/AsyncRuntime.cpp b/mlir/lib/ExecutionEngine/AsyncRuntime.cpp
index d7c09f9..878f859 100644
--- a/mlir/lib/ExecutionEngine/AsyncRuntime.cpp
+++ b/mlir/lib/ExecutionEngine/AsyncRuntime.cpp
@@ -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