1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00

[ORC][C-bindings] Fix missing ')' in comments.

This commit is contained in:
Lang Hames 2021-04-24 18:01:56 -07:00
parent de1f20abe1
commit 8daeb57ed9

View File

@ -207,8 +207,8 @@ typedef struct LLVMOrcOpaqueLookupState *LLVMOrcLookupStateRef;
* asynchronous definition process has been completed clients must call
* LLVMOrcLookupStateContinueLookup to continue the lookup (this should be
* done unconditionally, even if errors have occurred in the mean time, to
* free the lookup state memory and notify the query object of the failures. If
* LookupState is captured this function must return LLVMErrorSuccess.
* free the lookup state memory and notify the query object of the failures).
* If LookupState is captured this function must return LLVMErrorSuccess.
*
* The Kind argument can be inspected to determine the lookup kind (e.g.
* as-if-during-static-link, or as-if-during-dlsym).