diff options
author | Eli Bendersky <eli.bendersky@intel.com> | 2012-08-10 18:30:44 +0000 |
---|---|---|
committer | Eli Bendersky <eli.bendersky@intel.com> | 2012-08-10 18:30:44 +0000 |
commit | ac8a4ad47d17bac8c107d9f0e407d87befcd314e (patch) | |
tree | 897492c0d6aa5116e41d13fc9b30c574a8c673fb /include | |
parent | dadace036efe0304d6aee5c00fb9a9c594bde268 (diff) | |
download | external_llvm-ac8a4ad47d17bac8c107d9f0e407d87befcd314e.zip external_llvm-ac8a4ad47d17bac8c107d9f0e407d87befcd314e.tar.gz external_llvm-ac8a4ad47d17bac8c107d9f0e407d87befcd314e.tar.bz2 |
A couple of addition comment fixes
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@161678 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm-c/Core.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm-c/Core.h b/include/llvm-c/Core.h index f3aaab6..0bd5db3 100644 --- a/include/llvm-c/Core.h +++ b/include/llvm-c/Core.h @@ -986,7 +986,7 @@ LLVMTypeRef LLVMX86MMXType(void); * * LLVMValueRef essentially represents llvm::Value. There is a rich * hierarchy of classes within this type. Depending on the instance - * obtain, not all APIs are available. + * obtained, not all APIs are available. * * Callers can determine the type of a LLVMValueRef by calling the * LLVMIsA* family of functions (e.g. LLVMIsAArgument()). These @@ -1162,7 +1162,7 @@ LLVM_FOR_EACH_VALUE_SUBCLASS(LLVM_DECLARE_VALUE_CAST) * * Uses are obtained in an iterator fashion. First, call this function * to obtain a reference to the first use. Then, call LLVMGetNextUse() - * on that instance and all subsequently obtained instances untl + * on that instance and all subsequently obtained instances until * LLVMGetNextUse() returns NULL. * * @see llvm::Value::use_begin() |