[IR] Put a comment back on a function it belongs to. NFC

Looks like the function was moved to a different part of the class in December, but the comment didn't move with it.

llvm-svn: 305139
This commit is contained in:
Craig Topper 2017-06-10 06:58:22 +00:00
parent 4cb94e7831
commit 64f354553d
1 changed files with 1 additions and 1 deletions

View File

@ -2576,7 +2576,6 @@ class PHINode : public Instruction {
unsigned ReservedSpace; unsigned ReservedSpace;
PHINode(const PHINode &PN); PHINode(const PHINode &PN);
// allocate space for exactly zero operands
explicit PHINode(Type *Ty, unsigned NumReservedValues, explicit PHINode(Type *Ty, unsigned NumReservedValues,
const Twine &NameStr = "", const Twine &NameStr = "",
@ -2595,6 +2594,7 @@ class PHINode : public Instruction {
allocHungoffUses(ReservedSpace); allocHungoffUses(ReservedSpace);
} }
// allocate space for exactly zero operands
void *operator new(size_t s) { void *operator new(size_t s) {
return User::operator new(s); return User::operator new(s);
} }