mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-16 23:19:37 +00:00
SLPVectorizer: fix build problem in Release configuration
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@214496 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
956268f9dc
commit
5e2214cca6
@ -642,8 +642,10 @@ private:
|
||||
bool IsScheduled;
|
||||
};
|
||||
|
||||
#ifndef NDEBUG
|
||||
friend raw_ostream &operator<<(raw_ostream &os,
|
||||
const BoUpSLP::ScheduleData &SD);
|
||||
#endif
|
||||
|
||||
/// Contains all scheduling data for a basic block.
|
||||
///
|
||||
@ -827,11 +829,13 @@ private:
|
||||
/// Instruction builder to construct the vectorized tree.
|
||||
IRBuilder<> Builder;
|
||||
};
|
||||
|
||||
|
||||
#ifndef NDEBUG
|
||||
raw_ostream &operator<<(raw_ostream &os, const BoUpSLP::ScheduleData &SD) {
|
||||
SD.dump(os);
|
||||
return os;
|
||||
}
|
||||
#endif
|
||||
|
||||
void BoUpSLP::buildTree(ArrayRef<Value *> Roots,
|
||||
ArrayRef<Value *> UserIgnoreLst) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user