forked from OSchip/llvm-project
Attempt to fix a buildbot really this time.
llvm-svn: 285489
This commit is contained in:
parent
7d78614ae9
commit
c802fc2623
|
@ -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(); }
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue