diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-08-14 09:37:15 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-08-14 09:37:15 +0000 |
commit | 9d68ff6ef0e5de0356fb627b3b029fb5158788b8 (patch) | |
tree | 3c394f433a41ea004990885ddf857b59ac476c62 /llvm/tools/llvmc/Configuration.h | |
parent | e37345e78fd2e7e6af9191c03f7c44fae9d00673 (diff) | |
download | bcm5719-llvm-9d68ff6ef0e5de0356fb627b3b029fb5158788b8.tar.gz bcm5719-llvm-9d68ff6ef0e5de0356fb627b3b029fb5158788b8.zip |
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
Diffstat (limited to 'llvm/tools/llvmc/Configuration.h')
-rw-r--r-- | llvm/tools/llvmc/Configuration.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/tools/llvmc/Configuration.h b/llvm/tools/llvmc/Configuration.h index f11931d9995..e94fb896428 100644 --- a/llvm/tools/llvmc/Configuration.h +++ b/llvm/tools/llvmc/Configuration.h @@ -42,6 +42,9 @@ namespace llvm { /// @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 /// @{ |