Fix signed/unsigned comparison mismatch warning

This commit is contained in:
Simon Pilgrim 2022-07-19 11:13:31 +01:00
parent 0f6b0461b0
commit 2c488a6b35
1 changed files with 1 additions and 1 deletions

View File

@ -5072,7 +5072,7 @@ TEST_F(OpenMPIRBuilderTest, CreateTaskgroupWithTasks) {
Function *TaskAllocFn =
OMPBuilder.getOrCreateRuntimeFunctionPtr(OMPRTL___kmpc_omp_task_alloc);
ASSERT_EQ(TaskAllocFn->getNumUses(), 2);
ASSERT_EQ(TaskAllocFn->getNumUses(), 2u);
CallInst *FirstTaskAllocCall =
dyn_cast_or_null<CallInst>(*TaskAllocFn->users().begin());