forked from OSchip/llvm-project
parent
02260eeabf
commit
17a4573d21
|
@ -35,10 +35,7 @@ int main(int argc, char **argv) {
|
|||
return 1;
|
||||
}
|
||||
|
||||
if (DumpAsm) {
|
||||
cerr << "Here's the assembly:\n";
|
||||
M.get()->dump();
|
||||
}
|
||||
if (DumpAsm) cerr << "Here's the assembly:\n" << M.get();
|
||||
|
||||
if (OutputFilename != "") { // Specified an output filename?
|
||||
if (!Force && std::ifstream(OutputFilename.c_str())) {
|
||||
|
|
|
@ -109,10 +109,7 @@ int main(int argc, char **argv) {
|
|||
}
|
||||
}
|
||||
|
||||
if (DumpAsm) {
|
||||
cerr << "Here's the assembly:\n";
|
||||
Composite.get()->dump();
|
||||
}
|
||||
if (DumpAsm) cerr << "Here's the assembly:\n" << Composite.get();
|
||||
|
||||
ostream *Out = &cout; // Default to printing to stdout...
|
||||
if (OutputFilename != "-") {
|
||||
|
|
|
@ -35,10 +35,7 @@ int main(int argc, char **argv) {
|
|||
return 1;
|
||||
}
|
||||
|
||||
if (DumpAsm) {
|
||||
cerr << "Here's the assembly:\n";
|
||||
M.get()->dump();
|
||||
}
|
||||
if (DumpAsm) cerr << "Here's the assembly:\n" << M.get();
|
||||
|
||||
if (OutputFilename != "") { // Specified an output filename?
|
||||
if (!Force && std::ifstream(OutputFilename.c_str())) {
|
||||
|
|
|
@ -35,10 +35,7 @@ int main(int argc, char **argv) {
|
|||
return 1;
|
||||
}
|
||||
|
||||
if (DumpAsm) {
|
||||
cerr << "Here's the assembly:\n";
|
||||
M.get()->dump();
|
||||
}
|
||||
if (DumpAsm) cerr << "Here's the assembly:\n" << M.get();
|
||||
|
||||
if (OutputFilename != "") { // Specified an output filename?
|
||||
if (!Force && std::ifstream(OutputFilename.c_str())) {
|
||||
|
|
|
@ -109,10 +109,7 @@ int main(int argc, char **argv) {
|
|||
}
|
||||
}
|
||||
|
||||
if (DumpAsm) {
|
||||
cerr << "Here's the assembly:\n";
|
||||
Composite.get()->dump();
|
||||
}
|
||||
if (DumpAsm) cerr << "Here's the assembly:\n" << Composite.get();
|
||||
|
||||
ostream *Out = &cout; // Default to printing to stdout...
|
||||
if (OutputFilename != "-") {
|
||||
|
|
Loading…
Reference in New Issue