diff options
Diffstat (limited to 'tools/as')
-rw-r--r-- | tools/as/as.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tools/as/as.cpp b/tools/as/as.cpp index 3e8a9ea..9eff972 100644 --- a/tools/as/as.cpp +++ b/tools/as/as.cpp @@ -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())) { |