forked from OSchip/llvm-project
Fix signed/unsigned comparison mismatch warning
This commit is contained in:
parent
0f6b0461b0
commit
2c488a6b35
|
@ -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());
|
||||
|
|
Loading…
Reference in New Issue