Changes in directory llvm/tools/llvm-dis:
llvm-dis.cpp updated: 1.61 -> 1.62
---
Log message:
use the new MemoryBuffer interfaces to simplify error reporting in clients.
---
Diffs of the changes: (+4 -7)
llvm-dis.cpp | 11 ---
1 files changed, 4 insertions(+), 7 deletions(-)
In
Changes in directory llvm/tools/llvm-dis:
llvm-dis.cpp updated: 1.59 -> 1.60
---
Log message:
simplify code
---
Diffs of the changes: (+2 -6)
llvm-dis.cpp |8 ++--
1 files changed, 2 insertions(+), 6 deletions(-)
Index: llvm/tools/llvm-dis/llvm-dis.cpp
diff -u llvm/tools/llvm-dis
Changes in directory llvm/tools/llvm-dis:
llvm-dis.cpp updated: 1.58 -> 1.59
---
Log message:
Switch the bitcode reader interface to take a MemoryBuffer instead of knowing
anything about disk I/O itself. This greatly simplifies its interface -
eliminating the need for the ReaderWrappers.cpp fi
Changes in directory llvm/tools/llvm-dis:
llvm-dis.cpp updated: 1.57 -> 1.58
---
Log message:
don't break reading from stdin
---
Diffs of the changes: (+3 -2)
llvm-dis.cpp |5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
Index: llvm/tools/llvm-dis/llvm-dis.cpp
diff -u llvm/
Changes in directory llvm/tools/llvm-dis:
llvm-dis.cpp updated: 1.55 -> 1.56
---
Log message:
push bytecode decompressor out through APIs. Now the bytecode reader
api's look like this:
ModuleProvider *getBytecodeModuleProvider(
const std::string &Filename, ///< Name of file to be read
BC
Changes in directory llvm/tools/llvm-dis:
llvm-dis.cpp updated: 1.54 -> 1.55
---
Log message:
add an option for timing bc file reading.
---
Diffs of the changes: (+12 -5)
llvm-dis.cpp | 17 -
1 files changed, 12 insertions(+), 5 deletions(-)
Index: llvm/tools/llvm-dis/l
Changes in directory llvm/tools/llvm-dis:
llvm-dis.cpp updated: 1.53 -> 1.54
---
Log message:
Changed llvm_ostream et all to OStream. llvm_cerr, llvm_cout, llvm_null, are
now cerr, cout, and NullStream resp.
---
Diffs of the changes: (+12 -12)
llvm-dis.cpp | 24
Changes in directory llvm/tools/llvm-dis:
llvm-dis.cpp updated: 1.52 -> 1.53
---
Log message:
make all llvm tools call llvm_shutdown when they exit, static'ify some stuff.
With this change, I can now move -stats to print when llvm_shutdown is called.
---
Diffs of the changes: (+3 -0)
llvm
Changes in directory llvm/tools/llvm-dis:
llvm-dis.cpp updated: 1.51 -> 1.52
---
Log message:
Convert to using llvm streams instead of iostreams.
---
Diffs of the changes: (+12 -10)
llvm-dis.cpp | 22 --
1 files changed, 12 insertions(+), 10 deletions(-)
Index: llvm