[llvm] 38c01c3 - NFC fix typos from #92417

Orlando Cazalet-Hyams via llvm-commits llvm-commits at lists.llvm.org
Mon Jun 10 01:25:50 PDT 2024


Author: Orlando Cazalet-Hyams
Date: 2024-06-10T09:25:26+01:00
New Revision: 38c01c3d91f8815468dedf67db9eaa0bd0c6ea7a

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

LOG: NFC fix typos from #92417

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm-c/Core.h b/llvm/include/llvm-c/Core.h
index cd9d7e0f843d0..d4a10e9277605 100644
--- a/llvm/include/llvm-c/Core.h
+++ b/llvm/include/llvm-c/Core.h
@@ -3952,24 +3952,24 @@ const unsigned *LLVMGetIndices(LLVMValueRef Inst);
 LLVMBuilderRef LLVMCreateBuilderInContext(LLVMContextRef C);
 LLVMBuilderRef LLVMCreateBuilder(void);
 /**
- * Set the builder poisiton before Instr but after any attached debug records,
+ * Set the builder position before Instr but after any attached debug records,
  * or if Instr is null set the position to the end of Block.
  */
 void LLVMPositionBuilder(LLVMBuilderRef Builder, LLVMBasicBlockRef Block,
                          LLVMValueRef Instr);
 /**
- * Set the builder poisiton before Instr and any attached debug records,
+ * Set the builder position before Instr and any attached debug records,
  * or if Instr is null set the position to the end of Block.
  */
 void LLVMPositionBuilderBeforeDbgRecords(LLVMBuilderRef Builder,
                                          LLVMBasicBlockRef Block,
                                          LLVMValueRef Inst);
 /**
- * Set the builder poisiton before Instr but after any attached debug records.
+ * Set the builder position before Instr but after any attached debug records.
  */
 void LLVMPositionBuilderBefore(LLVMBuilderRef Builder, LLVMValueRef Instr);
 /**
- * Set the builder poisiton before Instr and any attached debug records.
+ * Set the builder position before Instr and any attached debug records.
  */
 void LLVMPositionBuilderBeforeInstrAndDbgRecords(LLVMBuilderRef Builder,
                                                  LLVMValueRef Instr);


        


More information about the llvm-commits mailing list