Skip to content

Commit 17544fa

Browse files
committed
[NFC][llvm-c] Add full-stop to doc comments
I'd copied and adjusted the doc comments for LLVMGetNNeg and LLVMSetNNeg in #74517. Nikita pointed out in that review my comments were missing a full stop, so I'm applying the same fix to these.
1 parent 46a36af commit 17544fa

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

llvm/include/llvm-c/Core.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3975,13 +3975,13 @@ LLVMBool LLVMGetExact(LLVMValueRef DivOrShrInst);
39753975
void LLVMSetExact(LLVMValueRef DivOrShrInst, LLVMBool IsExact);
39763976

39773977
/**
3978-
* Gets if the instruction has the non-negative flag set
3979-
* Only valid for zext instructions
3978+
* Gets if the instruction has the non-negative flag set.
3979+
* Only valid for zext instructions.
39803980
*/
39813981
LLVMBool LLVMGetNNeg(LLVMValueRef NonNegInst);
39823982
/**
3983-
* Sets the non-negative flag for the instruction
3984-
* Only valid for zext instructions
3983+
* Sets the non-negative flag for the instruction.
3984+
* Only valid for zext instructions.
39853985
*/
39863986
void LLVMSetNNeg(LLVMValueRef NonNegInst, LLVMBool IsNonNeg);
39873987

0 commit comments

Comments
 (0)