mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-15 21:24:00 +00:00
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:
@ -39,7 +39,7 @@ int main(int argc, char **argv) {
|
|||||||
cerr << "Here's the assembly:\n" << C.get();
|
cerr << "Here's the assembly:\n" << C.get();
|
||||||
|
|
||||||
if (OutputFilename != "") { // Specified an output filename?
|
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!
|
// If force is not specified, make sure not to overwrite a file!
|
||||||
cerr << "Error opening '" << OutputFilename << "': File exists!\n"
|
cerr << "Error opening '" << OutputFilename << "': File exists!\n"
|
||||||
<< "Use -f command line argument to force output\n";
|
<< "Use -f command line argument to force output\n";
|
||||||
@ -61,7 +61,7 @@ int main(int argc, char **argv) {
|
|||||||
}
|
}
|
||||||
OutputFilename += ".bc";
|
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!
|
// If force is not specified, make sure not to overwrite a file!
|
||||||
cerr << "Error opening '" << OutputFilename << "': File exists!\n"
|
cerr << "Error opening '" << OutputFilename << "': File exists!\n"
|
||||||
<< "Use -f command line argument to force output\n";
|
<< "Use -f command line argument to force output\n";
|
||||||
|
@ -58,7 +58,7 @@ int main(int argc, char **argv) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (OutputFilename != "") { // Specified an output filename?
|
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!
|
// If force is not specified, make sure not to overwrite a file!
|
||||||
cerr << "Error opening '" << OutputFilename
|
cerr << "Error opening '" << OutputFilename
|
||||||
<< "': File exists! Sending to standard output.\n";
|
<< "': File exists! Sending to standard output.\n";
|
||||||
@ -79,7 +79,7 @@ int main(int argc, char **argv) {
|
|||||||
}
|
}
|
||||||
OutputFilename += ".ll";
|
OutputFilename += ".ll";
|
||||||
|
|
||||||
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!
|
// If force is not specified, make sure not to overwrite a file!
|
||||||
cerr << "Error opening '" << OutputFilename
|
cerr << "Error opening '" << OutputFilename
|
||||||
<< "': File exists! Sending to standard output.\n";
|
<< "': File exists! Sending to standard output.\n";
|
||||||
|
@ -111,7 +111,7 @@ int main(int argc, char **argv) {
|
|||||||
|
|
||||||
ostream *Out = &cout; // Default to printing to stdout...
|
ostream *Out = &cout; // Default to printing to stdout...
|
||||||
if (OutputFilename != "-") {
|
if (OutputFilename != "-") {
|
||||||
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!
|
// If force is not specified, make sure not to overwrite a file!
|
||||||
cerr << "Error opening '" << OutputFilename << "': File exists!\n"
|
cerr << "Error opening '" << OutputFilename << "': File exists!\n"
|
||||||
<< "Use -f command line argument to force output\n";
|
<< "Use -f command line argument to force output\n";
|
||||||
|
@ -136,7 +136,7 @@ int main(int argc, char **argv) {
|
|||||||
"files on stdin not supported with tracing");
|
"files on stdin not supported with tracing");
|
||||||
string traceFileName = GetFileNameRoot(InputFilename) + ".trace.bc";
|
string traceFileName = GetFileNameRoot(InputFilename) + ".trace.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!
|
// If force is not specified, make sure not to overwrite a file!
|
||||||
cerr << "Error opening '" << OutputFilename << "': File exists!\n"
|
cerr << "Error opening '" << OutputFilename << "': File exists!\n"
|
||||||
<< "Use -f command line argument to force output\n";
|
<< "Use -f command line argument to force output\n";
|
||||||
@ -170,7 +170,7 @@ int main(int argc, char **argv) {
|
|||||||
// Figure out where we are going to send the output...
|
// Figure out where we are going to send the output...
|
||||||
std::ostream *Out = 0;
|
std::ostream *Out = 0;
|
||||||
if (OutputFilename != "") { // Specified an output filename?
|
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!
|
// If force is not specified, make sure not to overwrite a file!
|
||||||
cerr << "Error opening '" << OutputFilename << "': File exists!\n"
|
cerr << "Error opening '" << OutputFilename << "': File exists!\n"
|
||||||
<< "Use -f command line argument to force output\n";
|
<< "Use -f command line argument to force output\n";
|
||||||
@ -185,7 +185,7 @@ int main(int argc, char **argv) {
|
|||||||
string OutputFilename = GetFileNameRoot(InputFilename);
|
string OutputFilename = GetFileNameRoot(InputFilename);
|
||||||
OutputFilename += ".s";
|
OutputFilename += ".s";
|
||||||
|
|
||||||
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!
|
// If force is not specified, make sure not to overwrite a file!
|
||||||
cerr << "Error opening '" << OutputFilename << "': File exists!\n"
|
cerr << "Error opening '" << OutputFilename << "': File exists!\n"
|
||||||
<< "Use -f command line argument to force output\n";
|
<< "Use -f command line argument to force output\n";
|
||||||
|
@ -39,7 +39,7 @@ int main(int argc, char **argv) {
|
|||||||
cerr << "Here's the assembly:\n" << C.get();
|
cerr << "Here's the assembly:\n" << C.get();
|
||||||
|
|
||||||
if (OutputFilename != "") { // Specified an output filename?
|
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!
|
// If force is not specified, make sure not to overwrite a file!
|
||||||
cerr << "Error opening '" << OutputFilename << "': File exists!\n"
|
cerr << "Error opening '" << OutputFilename << "': File exists!\n"
|
||||||
<< "Use -f command line argument to force output\n";
|
<< "Use -f command line argument to force output\n";
|
||||||
@ -61,7 +61,7 @@ int main(int argc, char **argv) {
|
|||||||
}
|
}
|
||||||
OutputFilename += ".bc";
|
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!
|
// If force is not specified, make sure not to overwrite a file!
|
||||||
cerr << "Error opening '" << OutputFilename << "': File exists!\n"
|
cerr << "Error opening '" << OutputFilename << "': File exists!\n"
|
||||||
<< "Use -f command line argument to force output\n";
|
<< "Use -f command line argument to force output\n";
|
||||||
|
@ -39,7 +39,7 @@ int main(int argc, char **argv) {
|
|||||||
cerr << "Here's the assembly:\n" << C.get();
|
cerr << "Here's the assembly:\n" << C.get();
|
||||||
|
|
||||||
if (OutputFilename != "") { // Specified an output filename?
|
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!
|
// If force is not specified, make sure not to overwrite a file!
|
||||||
cerr << "Error opening '" << OutputFilename << "': File exists!\n"
|
cerr << "Error opening '" << OutputFilename << "': File exists!\n"
|
||||||
<< "Use -f command line argument to force output\n";
|
<< "Use -f command line argument to force output\n";
|
||||||
@ -61,7 +61,7 @@ int main(int argc, char **argv) {
|
|||||||
}
|
}
|
||||||
OutputFilename += ".bc";
|
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!
|
// If force is not specified, make sure not to overwrite a file!
|
||||||
cerr << "Error opening '" << OutputFilename << "': File exists!\n"
|
cerr << "Error opening '" << OutputFilename << "': File exists!\n"
|
||||||
<< "Use -f command line argument to force output\n";
|
<< "Use -f command line argument to force output\n";
|
||||||
|
@ -58,7 +58,7 @@ int main(int argc, char **argv) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (OutputFilename != "") { // Specified an output filename?
|
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!
|
// If force is not specified, make sure not to overwrite a file!
|
||||||
cerr << "Error opening '" << OutputFilename
|
cerr << "Error opening '" << OutputFilename
|
||||||
<< "': File exists! Sending to standard output.\n";
|
<< "': File exists! Sending to standard output.\n";
|
||||||
@ -79,7 +79,7 @@ int main(int argc, char **argv) {
|
|||||||
}
|
}
|
||||||
OutputFilename += ".ll";
|
OutputFilename += ".ll";
|
||||||
|
|
||||||
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!
|
// If force is not specified, make sure not to overwrite a file!
|
||||||
cerr << "Error opening '" << OutputFilename
|
cerr << "Error opening '" << OutputFilename
|
||||||
<< "': File exists! Sending to standard output.\n";
|
<< "': File exists! Sending to standard output.\n";
|
||||||
|
@ -58,7 +58,7 @@ int main(int argc, char **argv) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (OutputFilename != "") { // Specified an output filename?
|
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!
|
// If force is not specified, make sure not to overwrite a file!
|
||||||
cerr << "Error opening '" << OutputFilename
|
cerr << "Error opening '" << OutputFilename
|
||||||
<< "': File exists! Sending to standard output.\n";
|
<< "': File exists! Sending to standard output.\n";
|
||||||
@ -79,7 +79,7 @@ int main(int argc, char **argv) {
|
|||||||
}
|
}
|
||||||
OutputFilename += ".ll";
|
OutputFilename += ".ll";
|
||||||
|
|
||||||
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!
|
// If force is not specified, make sure not to overwrite a file!
|
||||||
cerr << "Error opening '" << OutputFilename
|
cerr << "Error opening '" << OutputFilename
|
||||||
<< "': File exists! Sending to standard output.\n";
|
<< "': File exists! Sending to standard output.\n";
|
||||||
|
@ -111,7 +111,7 @@ int main(int argc, char **argv) {
|
|||||||
|
|
||||||
ostream *Out = &cout; // Default to printing to stdout...
|
ostream *Out = &cout; // Default to printing to stdout...
|
||||||
if (OutputFilename != "-") {
|
if (OutputFilename != "-") {
|
||||||
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!
|
// If force is not specified, make sure not to overwrite a file!
|
||||||
cerr << "Error opening '" << OutputFilename << "': File exists!\n"
|
cerr << "Error opening '" << OutputFilename << "': File exists!\n"
|
||||||
<< "Use -f command line argument to force output\n";
|
<< "Use -f command line argument to force output\n";
|
||||||
|
@ -127,7 +127,7 @@ int main(int argc, char **argv) {
|
|||||||
|
|
||||||
std::ostream *Out = &std::cout; // Default to printing to stdout...
|
std::ostream *Out = &std::cout; // Default to printing to stdout...
|
||||||
if (OutputFilename != "") {
|
if (OutputFilename != "") {
|
||||||
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!
|
// If force is not specified, make sure not to overwrite a file!
|
||||||
cerr << "Error opening '" << OutputFilename << "': File exists!\n"
|
cerr << "Error opening '" << OutputFilename << "': File exists!\n"
|
||||||
<< "Use -f command line argument to force output\n";
|
<< "Use -f command line argument to force output\n";
|
||||||
|
Reference in New Issue
Block a user