diff options
author | Nico Weber <nicolasweber@gmx.de> | 2019-07-10 14:49:36 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2019-07-10 14:49:36 +0000 |
commit | 30d12be76c26c08e363a6c06b6dd1bb0b2a9c905 (patch) | |
tree | 31c19a658b14ff2d435d7dbfcab3cf53c61240ff | |
parent | 0735cc1954d84afa742abadf78e4136489f7cd0d (diff) | |
download | bcm5719-llvm-30d12be76c26c08e363a6c06b6dd1bb0b2a9c905.tar.gz bcm5719-llvm-30d12be76c26c08e363a6c06b6dd1bb0b2a9c905.zip |
Remove two unused member variables.
They were added over 10 years ago in r66575 and have never been used as
far as I can tell.
(r67087 added similar fields to Compilation, and those are used.)
llvm-svn: 365638
-rw-r--r-- | clang/include/clang/Driver/Driver.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/clang/include/clang/Driver/Driver.h b/clang/include/clang/Driver/Driver.h index 244a0f3276c..f9528641073 100644 --- a/clang/include/clang/Driver/Driver.h +++ b/clang/include/clang/Driver/Driver.h @@ -235,9 +235,6 @@ private: /// Certain options suppress the 'no input files' warning. unsigned SuppressMissingInputWarning : 1; - std::list<std::string> TempFiles; - std::list<std::string> ResultFiles; - /// Cache of all the ToolChains in use by the driver. /// /// This maps from the string representation of a triple to a ToolChain |