From: Groverkss Date: Thu, 18 Nov 2021 15:34:00 +0000 (+0530) Subject: Fix doc comment for mergeLocalIds. X-Git-Tag: upstream/15.0.7~24146 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b912bf240e718d47a0cc00bda5b6da2853c8715d;p=platform%2Fupstream%2Fllvm.git Fix doc comment for mergeLocalIds. --- diff --git a/mlir/include/mlir/Analysis/AffineStructures.h b/mlir/include/mlir/Analysis/AffineStructures.h index a9bc382..f69ef19 100644 --- a/mlir/include/mlir/Analysis/AffineStructures.h +++ b/mlir/include/mlir/Analysis/AffineStructures.h @@ -441,10 +441,13 @@ public: /// variables. void convertDimToLocal(unsigned dimStart, unsigned dimLimit); - /// Adds additional local ids to the sets such that they both have the union - /// of the local ids in each set, without changing the set of points that - /// lie in `this` and `other`. The ordering of the local ids in the - /// sets may also be changed but is the same in both sets. + /// Adds additional local ids to the sets such that they both have the union + /// of the local ids in each set, without changing the set of points that + /// lie in `this` and `other`. The ordering of the local ids in the + /// sets may also be changed. After merging, if the `i^th` local variable in + /// one set has a known division representation, then the `i^th` local + /// variable in the other set either has the same division representation or + /// no known division representation. /// /// The number of dimensions and symbol ids in `this` and `other` should /// match.