Index: src/IceConverter.h |
diff --git a/src/IceConverter.h b/src/IceConverter.h |
index 8903607c461936d92c4965e6b3000abde38cdf02..f6fce794d7e0f345179924a990054141b766fbfe 100644 |
--- a/src/IceConverter.h |
+++ b/src/IceConverter.h |
@@ -26,6 +26,7 @@ class Converter : public Translator { |
public: |
Converter(llvm::Module *Mod, GlobalContext *Ctx, const Ice::ClFlags &Flags) |
: Translator(Ctx, Flags), Mod(Mod) {} |
+ |
/// Converts the LLVM Module to ICE. Sets exit status to false if successful, |
/// true otherwise. |
void convertToIce(); |
@@ -34,6 +35,10 @@ private: |
llvm::Module *Mod; |
// Converts functions to ICE, and then machine code. |
void convertFunctions(); |
+ |
+ // Converts globals to ICE, and then machine code. |
+ void convertGlobals(llvm::Module *Mod); |
+ |
Converter(const Converter &) LLVM_DELETED_FUNCTION; |
Converter &operator=(const Converter &) LLVM_DELETED_FUNCTION; |
}; |