Attempt to fix a buildbot really this time.

llvm-svn: 285489
This commit is contained in:
Rui Ueyama 2016-10-29 01:28:06 +00:00
parent 7d78614ae9
commit c802fc2623
1 changed files with 7 additions and 3 deletions

View File

@ -9,7 +9,11 @@
#include "Memory.h"
llvm::BumpPtrAllocator lld::elf::BAlloc;
llvm::StringSaver lld::elf::Saver{BAlloc};
using namespace llvm;
void lld::elf::freeArena() { lld::elf::BAlloc.Reset(); }
namespace lld {
BumpPtrAllocator elf::BAlloc;
StringSaver elf::Saver{elf::BAlloc};
void elf::freeArena() { elf::BAlloc.Reset(); }
}