diff options
-rw-r--r-- | llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp b/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp index 319b99b8d19..a8b785691b1 100644 --- a/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp +++ b/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp @@ -613,13 +613,11 @@ public: int Idx = -1; /// The operand index of the use. unsigned EdgeIdx = UINT_MAX; -#ifndef NDEBUG + /// Debug print. void dump(raw_ostream &OS) const { OS << "{User:" << Idx << " EdgeIdx:" << EdgeIdx << "}"; } - LLVM_DUMP_METHOD void dump() const { dump(dbgs()); } -#endif }; private: |