[llvm-commits] CVS: llvm/lib/Support/Allocator.cpp

2007-02-23 Thread Chris Lattner
Changes in directory llvm/lib/Support: Allocator.cpp updated: 1.5 -> 1.6 --- Log message: Avoid TBAA issue. --- Diffs of the changes: (+4 -1) Allocator.cpp |5 - 1 files changed, 4 insertions(+), 1 deletion(-) Index: llvm/lib/Support/Allocator.cpp diff -u llvm/lib/Support/Allocat

[llvm-commits] CVS: llvm/lib/Support/Allocator.cpp CommandLine.cpp PluginLoader.cpp Statistic.cpp SystemUtils.cpp

2006-12-07 Thread Bill Wendling
Changes in directory llvm/lib/Support: Allocator.cpp updated: 1.4 -> 1.5 CommandLine.cpp updated: 1.80 -> 1.81 PluginLoader.cpp updated: 1.20 -> 1.21 Statistic.cpp updated: 1.21 -> 1.22 SystemUtils.cpp updated: 1.48 -> 1.49 --- Log message: Don't use in Streams.h but instead. --- Diffs of t

[llvm-commits] CVS: llvm/lib/Support/Allocator.cpp CommandLine.cpp Debug.cpp GraphWriter.cpp PluginLoader.cpp SlowOperationInformer.cpp Streams.cpp SystemUtils.cpp

2006-12-06 Thread Bill Wendling
Changes in directory llvm/lib/Support: Allocator.cpp updated: 1.3 -> 1.4 CommandLine.cpp updated: 1.79 -> 1.80 Debug.cpp updated: 1.9 -> 1.10 GraphWriter.cpp updated: 1.6 -> 1.7 PluginLoader.cpp updated: 1.19 -> 1.20 SlowOperationInformer.cpp updated: 1.11 -> 1.12 Streams.cpp updated: 1.1 -> 1.2

[llvm-commits] CVS: llvm/lib/Support/Allocator.cpp CommandLine.cpp GraphWriter.cpp PluginLoader.cpp SlowOperationInformer.cpp SystemUtils.cpp

2006-11-26 Thread Bill Wendling
Changes in directory llvm/lib/Support: Allocator.cpp updated: 1.2 -> 1.3 CommandLine.cpp updated: 1.78 -> 1.79 GraphWriter.cpp updated: 1.5 -> 1.6 PluginLoader.cpp updated: 1.18 -> 1.19 SlowOperationInformer.cpp updated: 1.10 -> 1.11 SystemUtils.cpp updated: 1.45 -> 1.46 --- Log message: Remove

[llvm-commits] CVS: llvm/lib/Support/Allocator.cpp

2006-11-08 Thread John Criswell
Changes in directory llvm/lib/Support: Allocator.cpp updated: 1.1 -> 1.2 --- Log message: Include llvm/Support/DataTypes.h to define intptr_t. This fixes the build on OpenBSD and potentially other systems. --- Diffs of the changes: (+1 -0) Allocator.cpp |1 + 1 files changed, 1 inserti

[llvm-commits] CVS: llvm/lib/Support/Allocator.cpp

2006-10-29 Thread Chris Lattner
Changes in directory llvm/lib/Support: Allocator.cpp added (r1.1) --- Log message: Add a new llvm::Allocator abstraction, which will be used by a container I'm about to add. This is similar to, but necessarily different than, the STL allocator class. --- Diffs of the changes: (+106 -0) A