mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-28 19:31:58 +00:00
Fine grainify namespaceification
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10093 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
cb64241795
commit
c2ee9b9c7a
@ -26,10 +26,11 @@
|
|||||||
#include "Support/Statistic.h"
|
#include "Support/Statistic.h"
|
||||||
#include "Support/DynamicLinker.h"
|
#include "Support/DynamicLinker.h"
|
||||||
#include "Config/dlfcn.h"
|
#include "Config/dlfcn.h"
|
||||||
|
using namespace llvm;
|
||||||
|
|
||||||
namespace llvm {
|
namespace {
|
||||||
|
Statistic<> NumInitBytes("lli", "Number of bytes of global vars initialized");
|
||||||
Statistic<> NumInitBytes("lli", "Number of bytes of global vars initialized");
|
}
|
||||||
|
|
||||||
ExecutionEngine::ExecutionEngine(ModuleProvider *P) :
|
ExecutionEngine::ExecutionEngine(ModuleProvider *P) :
|
||||||
CurMod(*P->getModule()), MP(P) {
|
CurMod(*P->getModule()), MP(P) {
|
||||||
@ -391,5 +392,3 @@ void ExecutionEngine::emitGlobals() {
|
|||||||
if (!I->isExternal())
|
if (!I->isExternal())
|
||||||
InitializeMemory(I->getInitializer(), GlobalAddress[I]);
|
InitializeMemory(I->getInitializer(), GlobalAddress[I]);
|
||||||
}
|
}
|
||||||
|
|
||||||
} // End llvm namespace
|
|
||||||
|
Loading…
Reference in New Issue
Block a user