[llvm-commits] CVS: llvm/tools/llvm-dis/Makefile llvm-dis.cpp
Chris Lattner
lattner at cs.uiuc.edu
Fri Feb 13 17:23:01 PST 2004
Changes in directory llvm/tools/llvm-dis:
Makefile updated: 1.13 -> 1.14
llvm-dis.cpp updated: 1.38 -> 1.39
---
Log message:
Mercilessly rip the cbackend out of llvm-dis. Leave a helpful error message
for those who have not heard the news.
---
Diffs of the changes: (+9 -18)
Index: llvm/tools/llvm-dis/Makefile
diff -u llvm/tools/llvm-dis/Makefile:1.13 llvm/tools/llvm-dis/Makefile:1.14
--- llvm/tools/llvm-dis/Makefile:1.13 Fri Feb 13 17:01:14 2004
+++ llvm/tools/llvm-dis/Makefile Fri Feb 13 17:22:40 2004
@@ -9,5 +9,5 @@
LEVEL = ../..
TOOLNAME = llvm-dis
-USEDLIBS = cwriter ipa.a scalaropts.a target.a transformutils analysis.a bcreader vmcore support.a
+USEDLIBS = bcreader vmcore support.a
include $(LEVEL)/Makefile.common
Index: llvm/tools/llvm-dis/llvm-dis.cpp
diff -u llvm/tools/llvm-dis/llvm-dis.cpp:1.38 llvm/tools/llvm-dis/llvm-dis.cpp:1.39
--- llvm/tools/llvm-dis/llvm-dis.cpp:1.38 Fri Feb 13 17:01:14 2004
+++ llvm/tools/llvm-dis/llvm-dis.cpp Fri Feb 13 17:22:40 2004
@@ -20,7 +20,6 @@
#include "llvm/Module.h"
#include "llvm/PassManager.h"
#include "llvm/Bytecode/Reader.h"
-#include "llvm/Assembly/CWriter.h"
#include "llvm/Assembly/PrintModulePass.h"
#include "Support/CommandLine.h"
#include "Support/Signals.h"
@@ -56,6 +55,11 @@
std::ostream *Out = &std::cout; // Default to printing to stdout...
std::string ErrorMessage;
+ if (WriteMode == c) {
+ std::cerr << "ERROR: llvm-dis no longer contains the C backend. Use 'llc -march=c' instead!\n";
+ exit(1);
+ }
+
std::auto_ptr<Module> M(ParseBytecodeFile(InputFilename, &ErrorMessage));
if (M.get() == 0) {
std::cerr << argv[0] << ": ";
@@ -84,14 +88,10 @@
int Len = IFN.length();
if (IFN[Len-3] == '.' && IFN[Len-2] == 'b' && IFN[Len-1] == 'c') {
// Source ends in .bc
- OutputFilename = std::string(IFN.begin(), IFN.end()-3);
+ OutputFilename = std::string(IFN.begin(), IFN.end()-3)+".ll";
} else {
- OutputFilename = IFN; // Append a .ll to it
+ OutputFilename = IFN+".ll";
}
- if (WriteMode == c)
- OutputFilename += ".c";
- else
- OutputFilename += ".ll";
if (!Force && std::ifstream(OutputFilename.c_str())) {
// If force is not specified, make sure not to overwrite a file!
@@ -116,16 +116,7 @@
// All that dis does is write the assembly or C out to a file...
//
PassManager Passes;
-
- switch (WriteMode) {
- case LLVM: // Output LLVM assembly
- Passes.add(new PrintModulePass(Out));
- break;
- case c: // Convert LLVM to C
- AddPassesToWriteC(Passes, *Out);
- break;
- }
-
+ Passes.add(new PrintModulePass(Out));
Passes.run(*M.get());
if (Out != &std::cout) {
More information about the llvm-commits
mailing list