Skip to content

Commit c2324e1

Browse files
committed
Added extra restrictions to some debug function parameters that cannot
be NULL.
1 parent f420b61 commit c2324e1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

llvm/include/llvm-c/DebugInfo.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -751,9 +751,9 @@ LLVMMetadataRef LLVMDIBuilderCreateSubrangeType(
751751
* \param Subscripts Subscripts.
752752
* \param NumSubscripts Number of subscripts.
753753
* \param DataLocation DataLocation.
754-
* \param Associated Associated.
755-
* \param Allocated Allocated.
756-
* \param Rank Rank.
754+
* \param Associated Associated (not NULL).
755+
* \param Allocated Allocated (not NULL).
756+
* \param Rank Rank (not NULL).
757757
* \param BitStride BitStride.
758758
*/
759759
LLVMMetadataRef LLVMDIBuilderCreateDynamicArrayType(

0 commit comments

Comments
 (0)