| Index: src/PNaClTranslator.cpp
|
| diff --git a/src/PNaClTranslator.cpp b/src/PNaClTranslator.cpp
|
| index 344b749752512488ee7afd4055ea20e80e95ce93..199781a2df2bf33436ce54d07e6a42e46113f869 100644
|
| --- a/src/PNaClTranslator.cpp
|
| +++ b/src/PNaClTranslator.cpp
|
| @@ -353,7 +353,7 @@ public:
|
| }
|
|
|
| /// Returns the list of parsed global variable declarations.
|
| - const Ice::Translator::VariableDeclarationListType &getGlobalVariables() {
|
| + const Ice::VariableDeclarationList &getGlobalVariables() {
|
| return VariableDeclarations;
|
| }
|
|
|
| @@ -371,7 +371,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).
|
|
|