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

Lang Hames via llvm-commits llvm-commits at lists.llvm.org
Sat Apr 24 18:05:15 PDT 2021


Author: Lang Hames
Date: 2021-04-24T18:04:57-07:00
New Revision: c572ff840f63a8ce58a922d44d0fa53f25636125

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

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

Added: 
    

Modified: 
    llvm/include/llvm-c/Orc.h

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm-c/Orc.h b/llvm/include/llvm-c/Orc.h
index 9beef44c89dd..c6cb862de474 100644
--- a/llvm/include/llvm-c/Orc.h
+++ b/llvm/include/llvm-c/Orc.h
@@ -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).


        


More information about the llvm-commits mailing list