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 | c52863cd368ae7a5cb59988811333784151b4ef2 (patch) | |
tree | 16d63ed7b8e800c7c334d05381fc7a2fcdd6c85d /llvm/include/llvm-c | |
parent | 870d057ec802bf807ec19b71dd537c0adac21a9d (diff) | |
download | bcm5719-llvm-c52863cd368ae7a5cb59988811333784151b4ef2.tar.gz bcm5719-llvm-c52863cd368ae7a5cb59988811333784151b4ef2.zip |
A couple of addition comment fixes
llvm-svn: 161678
Diffstat (limited to 'llvm/include/llvm-c')
-rw-r--r-- | llvm/include/llvm-c/Core.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/include/llvm-c/Core.h b/llvm/include/llvm-c/Core.h index f3aaab64e81..0bd5db3774c 100644 --- a/llvm/include/llvm-c/Core.h +++ b/llvm/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() |