[PATCH] D15906: [Vectorization] Actually return from error case in isStridedPtr
Tim Shen via llvm-commits
llvm-commits at lists.llvm.org
Tue Jan 5 22:31:25 PST 2016
timshen marked 2 inline comments as done.
timshen added a comment.
In http://reviews.llvm.org/D15906#320222, @echristo wrote:
> Check not?
I'm not sure - can I use CHECK-NOT(s) for a multi-line pattern?
A bit thinking: semantically I want `not (LINE_PATTERN_1 and LINE_PATTERN_2 and LINE_PATTERN3)`, which means I may do something roughly like `(not LINE_PATTERN_1) or (not LINE_PATTERN_2) or (not LINE_PATTERN_3)`, `not LINE_PATTERNx` can be expressed as CHECK-NOT, but I'm not sure if we have a way to express `or`.
http://reviews.llvm.org/D15906
More information about the llvm-commits
mailing list