Converted to use flex for tokenizing input so we can use an easier to
understand recursive descent parser, we can easily handle more syntax
variety, and we can more easily change the configuration items accepted.
llvm-svn: 15732
diff --git a/llvm/tools/llvmc/Configuration.h b/llvm/tools/llvmc/Configuration.h
index f11931d..e94fb89 100644
--- a/llvm/tools/llvmc/Configuration.h
+++ b/llvm/tools/llvmc/Configuration.h
@@ -42,6 +42,9 @@
/// @brief Allow the configuration directory to be set
virtual void setConfigDir(const std::string& dirName) { configDir = dirName; }
+ private:
+ CompilerDriver::ConfigData* ReadConfigData(const std::string& ftype);
+
/// @}
/// @name Data
/// @{