We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f80c0ba commit 718ef34Copy full SHA for 718ef34
llvm/tools/llvm-c-test/debuginfo.c
@@ -328,8 +328,10 @@ int llvm_test_dibuilder(void) {
328
// Test that LLVMGetFirstDbgRecord and LLVMGetLastDbgRecord return NULL for
329
// instructions without debug info.
330
LLVMDbgRecordRef Phi1FirstDbgRecord = LLVMGetFirstDbgRecord(Phi1);
331
+ (void)Phi1FirstDbgRecord;
332
assert(Phi1FirstDbgRecord == NULL);
333
LLVMDbgRecordRef Phi1LastDbgRecord = LLVMGetLastDbgRecord(Phi1);
334
+ (void)Phi1LastDbgRecord;
335
assert(Phi1LastDbgRecord == NULL);
336
337
// Insert a non-phi before the `ret` but not before the debug records to
0 commit comments