From: Nicolas Vasilache Date: Tue, 16 Apr 2019 21:11:25 +0000 (-0700) Subject: Fix SliceAnalysis comment X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0fe2f009f25f536df841346cdcd8193f05c4ce7d;p=platform%2Fupstream%2Fllvm.git Fix SliceAnalysis comment The description of the backward slice analysis behavior describes what would happen when creating a backward slice from node 9, not 8. -- PiperOrigin-RevId: 243876599 --- diff --git a/mlir/include/mlir/Analysis/SliceAnalysis.h b/mlir/include/mlir/Analysis/SliceAnalysis.h index c76f0b2..fec79cd 100644 --- a/mlir/include/mlir/Analysis/SliceAnalysis.h +++ b/mlir/include/mlir/Analysis/SliceAnalysis.h @@ -113,7 +113,7 @@ void getForwardSlice( /// 9 /// /// Assuming all local orders match the numbering order: -/// {1, 2, 5, 7, 3, 4, 6, 8} +/// {1, 2, 5, 3, 4, 6} /// void getBackwardSlice( Operation *op, llvm::SetVector *backwardSlice,