Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(606)

Unified Diff: src/PNaClTranslator.cpp

Issue 1661193004: Subzero. Adds symbolic references to RelocInitializer. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: addresses comments. Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/IceGlobalInits.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/PNaClTranslator.cpp
diff --git a/src/PNaClTranslator.cpp b/src/PNaClTranslator.cpp
index 13e08702ebbfb5af5e280632b28bef6152e24a17..97b8c34ce1dc4de8c1a048a81a54e26107a283e7 100644
--- a/src/PNaClTranslator.cpp
+++ b/src/PNaClTranslator.cpp
@@ -1211,9 +1211,10 @@ void GlobalsParser::ProcessRecord() {
Error(StrBuf.str());
}
}
+ Ice::GlobalContext *Ctx = getTranslator().getContext();
CurGlobalVar->addInitializer(
Ice::VariableDeclaration::RelocInitializer::create(
- getGlobalDeclByID(Index), Offset));
+ getGlobalDeclByID(Index), {Ice::RelocOffset::create(Ctx, Offset)}));
return;
}
default:
« no previous file with comments | « src/IceGlobalInits.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698