From 3f09c77d33dcd74b3cba4558b07f88d87ab2dd9d Mon Sep 17 00:00:00 2001 From: Sanjay Patel Date: Sun, 10 Jan 2021 13:15:04 -0500 Subject: [PATCH] [SLP] fix typo in assert This snuck into 0aa75fb12faa , but I didn't catch it locally. --- llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp b/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp index d0b6b43..5b91495 100644 --- a/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp +++ b/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp @@ -2502,7 +2502,7 @@ BoUpSLP::~BoUpSLP() { #ifdef EXPENSIVE_CHECKS // If we could guarantee that this call is not extremely slow, we could // remove the ifdef limitation (see PR47712). - assert(!verifyFunction(*F, %dbgs())); + assert(!verifyFunction(*F, &dbgs())); #endif } -- 2.7.4