From b1e8563376dfe1d320dc5801fe8a783600f4f86b Mon Sep 17 00:00:00 2001 From: Mikhail Glushenkov Date: Thu, 9 Jul 2009 19:36:08 +0000 Subject: [PATCH] Rename -t to --temp-dir. -t is already used by gcc in the meaning 'ld -t' (trace). The Base plugin may want to emulate this behaviour. llvm-svn: 75162 --- llvm/lib/CompilerDriver/BuiltinOptions.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llvm/lib/CompilerDriver/BuiltinOptions.cpp b/llvm/lib/CompilerDriver/BuiltinOptions.cpp index c4660e17a531..d90c50d67d92 100644 --- a/llvm/lib/CompilerDriver/BuiltinOptions.cpp +++ b/llvm/lib/CompilerDriver/BuiltinOptions.cpp @@ -25,8 +25,8 @@ cl::list InputFilenames(cl::Positional, cl::desc(""), cl::ZeroOrMore); cl::opt OutputFilename("o", cl::desc("Output file name"), cl::value_desc("file"), cl::Prefix); -cl::opt TempDirname("t", cl::desc("Temp dir name"), - cl::value_desc("dir"), cl::Prefix); +cl::opt TempDirname("temp-dir", cl::desc("Temp dir name"), + cl::value_desc(""), cl::Prefix); cl::list Languages("x", cl::desc("Specify the language of the following input files"), cl::ZeroOrMore);