[analyzer] Remove some list initialization from MPI Checker to make MSVC bots happy.

This is a speculative attempt to fix the compiler error: "list initialization inside
member initializer list or non-static data member initializer is not implemented" with
r272529.

llvm-svn: 272530
This commit is contained in:
Devin Coughlin 2016-06-13 03:58:58 +00:00
parent 160f19cdda
commit 9cffa40b75
2 changed files with 19 additions and 19 deletions

View File

@ -71,7 +71,7 @@ public:
BugReporter &BReporter) const;
private:
const std::string MPIError{"MPI Error"};
const std::string MPIError = "MPI Error";
// path-sensitive bug types
std::unique_ptr<BugType> UnmatchedWaitBugType;
@ -84,7 +84,7 @@ private:
public:
RequestNodeVisitor(const MemRegion *const MemoryRegion,
const std::string &ErrText)
: RequestRegion(MemoryRegion), ErrorText{ErrText} {}
: RequestRegion(MemoryRegion), ErrorText(ErrText) {}
void Profile(llvm::FoldingSetNodeID &ID) const override {
static int X = 0;
@ -99,7 +99,7 @@ private:
private:
const MemRegion *const RequestRegion;
bool IsNodeFound{false};
bool IsNodeFound = false;
std::string ErrorText;
};
};

View File

@ -68,26 +68,26 @@ private:
llvm::SmallVector<IdentifierInfo *, 32> MPIType;
// point-to-point functions
IdentifierInfo *IdentInfo_MPI_Send{nullptr}, *IdentInfo_MPI_Isend{nullptr},
*IdentInfo_MPI_Ssend{nullptr}, *IdentInfo_MPI_Issend{nullptr},
*IdentInfo_MPI_Bsend{nullptr}, *IdentInfo_MPI_Ibsend{nullptr},
*IdentInfo_MPI_Rsend{nullptr}, *IdentInfo_MPI_Irsend{nullptr},
*IdentInfo_MPI_Recv{nullptr}, *IdentInfo_MPI_Irecv{nullptr};
IdentifierInfo *IdentInfo_MPI_Send = nullptr, *IdentInfo_MPI_Isend = nullptr,
*IdentInfo_MPI_Ssend = nullptr, *IdentInfo_MPI_Issend = nullptr,
*IdentInfo_MPI_Bsend = nullptr, *IdentInfo_MPI_Ibsend = nullptr,
*IdentInfo_MPI_Rsend = nullptr, *IdentInfo_MPI_Irsend = nullptr,
*IdentInfo_MPI_Recv = nullptr, *IdentInfo_MPI_Irecv = nullptr;
// collective functions
IdentifierInfo *IdentInfo_MPI_Scatter{nullptr},
*IdentInfo_MPI_Iscatter{nullptr}, *IdentInfo_MPI_Gather{nullptr},
*IdentInfo_MPI_Igather{nullptr}, *IdentInfo_MPI_Allgather{nullptr},
*IdentInfo_MPI_Iallgather{nullptr}, *IdentInfo_MPI_Bcast{nullptr},
*IdentInfo_MPI_Ibcast{nullptr}, *IdentInfo_MPI_Reduce{nullptr},
*IdentInfo_MPI_Ireduce{nullptr}, *IdentInfo_MPI_Allreduce{nullptr},
*IdentInfo_MPI_Iallreduce{nullptr}, *IdentInfo_MPI_Alltoall{nullptr},
*IdentInfo_MPI_Ialltoall{nullptr}, *IdentInfo_MPI_Barrier{nullptr};
IdentifierInfo *IdentInfo_MPI_Scatter = nullptr,
*IdentInfo_MPI_Iscatter = nullptr, *IdentInfo_MPI_Gather = nullptr,
*IdentInfo_MPI_Igather = nullptr, *IdentInfo_MPI_Allgather = nullptr,
*IdentInfo_MPI_Iallgather = nullptr, *IdentInfo_MPI_Bcast = nullptr,
*IdentInfo_MPI_Ibcast = nullptr, *IdentInfo_MPI_Reduce = nullptr,
*IdentInfo_MPI_Ireduce = nullptr, *IdentInfo_MPI_Allreduce = nullptr,
*IdentInfo_MPI_Iallreduce = nullptr, *IdentInfo_MPI_Alltoall = nullptr,
*IdentInfo_MPI_Ialltoall = nullptr, *IdentInfo_MPI_Barrier = nullptr;
// additional functions
IdentifierInfo *IdentInfo_MPI_Comm_rank{nullptr},
*IdentInfo_MPI_Comm_size{nullptr}, *IdentInfo_MPI_Wait{nullptr},
*IdentInfo_MPI_Waitall{nullptr};
IdentifierInfo *IdentInfo_MPI_Comm_rank = nullptr,
*IdentInfo_MPI_Comm_size = nullptr, *IdentInfo_MPI_Wait = nullptr,
*IdentInfo_MPI_Waitall = nullptr;
};
} // end of namespace: mpi