Skip to content

Commit 626a3fd

Browse files
ro-igithub-actions[bot]
authored andcommitted
Automerge: [OpenMP] Fix comma -> semicolon (#145900)
Fix small typo.
2 parents fd6096a + 775a69b commit 626a3fd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang/lib/CodeGen/CGOpenMPRuntimeGPU.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1257,9 +1257,9 @@ void CGOpenMPRuntimeGPU::emitParallelCall(CodeGenFunction &CGF,
12571257
if (!NumThreadsVal)
12581258
NumThreadsVal = llvm::ConstantInt::get(CGF.Int32Ty, -1);
12591259
else
1260-
NumThreadsVal = Bld.CreateZExtOrTrunc(NumThreadsVal, CGF.Int32Ty),
1260+
NumThreadsVal = Bld.CreateZExtOrTrunc(NumThreadsVal, CGF.Int32Ty);
12611261

1262-
assert(IfCondVal && "Expected a value");
1262+
assert(IfCondVal && "Expected a value");
12631263
llvm::Value *RTLoc = emitUpdateLocation(CGF, Loc);
12641264
llvm::Value *Args[] = {
12651265
RTLoc,

0 commit comments

Comments
 (0)