Revert part of r248776. One of the changes worked on my local build, but not on the bots.

llvm-svn: 248778
This commit is contained in:
Craig Topper 2015-09-29 05:08:30 +00:00
parent 9f27fc0599
commit ae88a85775
1 changed files with 1 additions and 1 deletions

View File

@ -1445,7 +1445,7 @@ public:
/// Return the list of basic blocks that this terminator can branch to.
ArrayRef<BasicBlock*> successors() {
return Branches;
return llvm::makeArrayRef(Branches);
}
template <class V>