[WebAssembly] Remove used variable

llvm-svn: 320007
This commit is contained in:
Sam Clegg 2017-12-07 03:51:37 +00:00
parent 892b14658e
commit 80cfdd6b56
2 changed files with 0 additions and 2 deletions

View File

@ -39,7 +39,6 @@ struct Configuration {
llvm::StringSet<> AllowUndefinedSymbols;
std::vector<llvm::StringRef> SearchPaths;
std::vector<Symbol *> SyntheticGlobals;
Symbol *StackPointerSymbol = nullptr;
};

View File

@ -142,7 +142,6 @@ static Symbol* addSyntheticGlobal(StringRef Name, int32_t Value) {
log("injecting global: " + Name);
Symbol *S = Symtab->addDefinedGlobal(Name);
S->setVirtualAddress(Value);
Config->SyntheticGlobals.emplace_back(S);
return S;
}