From b592fc2b8dc5701999704c14e228a98233d20a03 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 10 Dec 2003 14:41:33 +0000 Subject: [PATCH] Make 'opt -o -' work correctly instead of creating a file named './-' git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10359 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/opt/opt.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/opt/opt.cpp b/tools/opt/opt.cpp index 30c72f1c9e8..d032e24ccd0 100644 --- a/tools/opt/opt.cpp +++ b/tools/opt/opt.cpp @@ -44,7 +44,7 @@ InputFilename(cl::Positional, cl::desc(""), cl::init("-")); static cl::opt OutputFilename("o", cl::desc("Override output filename"), - cl::value_desc("filename")); + cl::value_desc("filename"), cl::init("-")); static cl::opt Force("f", cl::desc("Overwrite output files")); @@ -93,7 +93,7 @@ int main(int argc, char **argv) { // Figure out what stream we are supposed to write to... std::ostream *Out = &std::cout; // Default to printing to stdout... - if (OutputFilename != "") { + if (OutputFilename != "-") { if (!Force && std::ifstream(OutputFilename.c_str())) { // If force is not specified, make sure not to overwrite a file! std::cerr << argv[0] << ": error opening '" << OutputFilename -- 2.34.1