diff options
author | Mikhail Glushenkov <foldr@codedgers.com> | 2009-12-01 06:51:30 +0000 |
---|---|---|
committer | Mikhail Glushenkov <foldr@codedgers.com> | 2009-12-01 06:51:30 +0000 |
commit | 97955005b3587e2b8bdc493b24548a20e17247d2 (patch) | |
tree | c8ffaf362400abe964d2673067e86d54dba8395a /utils | |
parent | 156cf873e5495740e42923c32aae9fd2185f968e (diff) | |
download | external_llvm-97955005b3587e2b8bdc493b24548a20e17247d2.zip external_llvm-97955005b3587e2b8bdc493b24548a20e17247d2.tar.gz external_llvm-97955005b3587e2b8bdc493b24548a20e17247d2.tar.bz2 |
Forward -save-temps to llvm-gcc.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@90214 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r-- | utils/TableGen/LLVMCConfigurationEmitter.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/utils/TableGen/LLVMCConfigurationEmitter.cpp b/utils/TableGen/LLVMCConfigurationEmitter.cpp index 546988a..8b55b81 100644 --- a/utils/TableGen/LLVMCConfigurationEmitter.cpp +++ b/utils/TableGen/LLVMCConfigurationEmitter.cpp @@ -1155,6 +1155,9 @@ public: if (OptName == "o") { O << Neg << "OutputFilename.empty()"; } + else if (OptName == "save-temps") { + O << Neg << "(SaveTemps == SaveTempsEnum::Unset)"; + } else { const OptionDescription& OptDesc = OptDescs_.FindListOrParameter(OptName); O << Neg << OptDesc.GenVariableName() << ".empty()"; |