[Mlir-commits] [mlir] 530db6a - [mlir][async] Update comments about library registration. (NFC)

Ingo Müller llvmlistbot at llvm.org
Fri Jun 16 11:03:57 PDT 2023


Author: Ingo Müller
Date: 2023-06-16T18:03:53Z
New Revision: 530db6a3b44cfbe59c32dba4fe6b7f25a0e9390c

URL: https://github.com/llvm/llvm-project/commit/530db6a3b44cfbe59c32dba4fe6b7f25a0e9390c
DIFF: https://github.com/llvm/llvm-project/commit/530db6a3b44cfbe59c32dba4fe6b7f25a0e9390c.diff

LOG: [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

Added: 
    

Modified: 
    mlir/lib/ExecutionEngine/AsyncRuntime.cpp

Removed: 
    


################################################################################
diff  --git a/mlir/lib/ExecutionEngine/AsyncRuntime.cpp b/mlir/lib/ExecutionEngine/AsyncRuntime.cpp
index d7c09f9826935..878f85995e5d7 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


        


More information about the Mlir-commits mailing list