In an amazing fit of stupidity, I flipped the conditional and didn't test

it right.  Sheesh :)


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1550 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2002-01-22 21:07:24 +00:00
parent e94525575f
commit 888912dbe0
10 changed files with 18 additions and 18 deletions

View File

@ -39,7 +39,7 @@ int main(int argc, char **argv) {
cerr << "Here's the assembly:\n" << C.get();
if (OutputFilename != "") { // Specified an output filename?
if (!Force && !std::ifstream(OutputFilename.c_str())) {
if (!Force && std::ifstream(OutputFilename.c_str())) {
// If force is not specified, make sure not to overwrite a file!
cerr << "Error opening '" << OutputFilename << "': File exists!\n"
<< "Use -f command line argument to force output\n";
@ -61,7 +61,7 @@ int main(int argc, char **argv) {
}
OutputFilename += ".bc";
if (!Force && !std::ifstream(OutputFilename.c_str())) {
if (!Force && std::ifstream(OutputFilename.c_str())) {
// If force is not specified, make sure not to overwrite a file!
cerr << "Error opening '" << OutputFilename << "': File exists!\n"
<< "Use -f command line argument to force output\n";