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

Unified Diff: src/PNaClTranslator.cpp

Issue 874353006: Write out global initializers and data rel directly to ELF file. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: misc stuff Created 5 years, 11 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
Index: src/PNaClTranslator.cpp
diff --git a/src/PNaClTranslator.cpp b/src/PNaClTranslator.cpp
index dfe93ff99957601bf4c5c5366dd14e335ba79d92..585c2df63e0548006ec40bf651d368f92c8146c5 100644
--- a/src/PNaClTranslator.cpp
+++ b/src/PNaClTranslator.cpp
@@ -352,7 +352,7 @@ public:
}
/// Returns the list of parsed global variable declarations.
- const Ice::Translator::VariableDeclarationListType &getGlobalVariables() {
+ const Ice::VariableDeclarationList &getGlobalVariables() {
return VariableDeclarations;
}
@@ -370,7 +370,7 @@ private:
// The set of functions.
FunctionDeclarationListType FunctionDeclarationList;
// The set of global variables.
- Ice::Translator::VariableDeclarationListType VariableDeclarations;
+ Ice::VariableDeclarationList VariableDeclarations;
// Relocatable constants associated with global declarations.
std::vector<Ice::Constant *> ValueIDConstants;
// The number of function declarations (i.e. IDs).

Powered by Google App Engine
This is Rietveld 408576698