[PATCH] D17170: [OPENMP] Codegen for distribute directive
Carlo Bertolli via cfe-commits
cfe-commits at lists.llvm.org
Wed Feb 17 09:20:49 PST 2016
carlo.bertolli marked 4 inline comments as done.
================
Comment at: lib/CodeGen/CGStmtOpenMP.cpp:2914
@@ -2713,4 +2913,3 @@
if (NT || TL) {
- NumTeamsVal = (NT) ? CGF.EmitScalarExpr(NT->getNumTeams(),
- /* IgnoreResultAssign = */ true) :
+ NumTeamsVal = (NT) ? CGF.EmitScalarExpr(NT->getNumTeams(), true) :
NumTeamsVal = CGF.Builder.getInt32(0);
----------------
ABataev wrote:
> Comment for 'true' arg?
I was missing a merge against my own connected patch..sorry!
Repository:
rL LLVM
http://reviews.llvm.org/D17170
More information about the cfe-commits
mailing list