[llvm-commits] CVS: llvm/lib/Transforms/Instrumentation/RSProfiling.cpp

2007-04-17 Thread Chris Lattner
Changes in directory llvm/lib/Transforms/Instrumentation: RSProfiling.cpp updated: 1.21 - 1.22 --- Log message: eliminate use of Instruction::getNext() --- Diffs of the changes: (+15 -13) RSProfiling.cpp | 28 +++- 1 files changed, 15 insertions(+), 13

[llvm-commits] CVS: llvm/lib/Transforms/Instrumentation/RSProfiling.cpp

2007-04-17 Thread Chris Lattner
Changes in directory llvm/lib/Transforms/Instrumentation: RSProfiling.cpp updated: 1.22 - 1.23 --- Log message: remove use of BasicBlock::getNext --- Diffs of the changes: (+4 -3) RSProfiling.cpp |7 --- 1 files changed, 4 insertions(+), 3 deletions(-) Index:

[llvm-commits] CVS: llvm/lib/Transforms/Instrumentation/RSProfiling.cpp

2007-04-16 Thread Anton Korobeynikov
Changes in directory llvm/lib/Transforms/Instrumentation: RSProfiling.cpp updated: 1.20 - 1.21 --- Log message: Removed tabs everywhere except autogenerated external files. Add make target for tabs checking. --- Diffs of the changes: (+19 -18) RSProfiling.cpp | 37

[llvm-commits] CVS: llvm/lib/Transforms/Instrumentation/RSProfiling.cpp

2007-01-11 Thread Zhou Sheng
Changes in directory llvm/lib/Transforms/Instrumentation: RSProfiling.cpp updated: 1.15 - 1.16 --- Log message: For PR1043: http://llvm.org/PR1043 : Merge ConstantIntegral and ConstantBool into ConstantInt. Remove ConstantIntegral and ConstantBool from LLVM. --- Diffs of the changes: (+2

[llvm-commits] CVS: llvm/lib/Transforms/Instrumentation/RSProfiling.cpp

2007-01-11 Thread Reid Spencer
Changes in directory llvm/lib/Transforms/Instrumentation: RSProfiling.cpp updated: 1.16 - 1.17 --- Log message: Implement review feedback for the ConstantBool-ConstantInt merge. Chris recommended that getBoolValue be replaced with getZExtValue and that get(bool) be replaced by get(const Type*,

[llvm-commits] CVS: llvm/lib/Transforms/Instrumentation/RSProfiling.cpp

2006-12-22 Thread Reid Spencer
Changes in directory llvm/lib/Transforms/Instrumentation: RSProfiling.cpp updated: 1.12 - 1.13 --- Log message: For PR950: http://llvm.org/PR950 : This patch removes the SetCC instructions and replaces them with the ICmp and FCmp instructions. The SetCondInst instruction has been removed and

[llvm-commits] CVS: llvm/lib/Transforms/Instrumentation/RSProfiling.cpp

2006-12-06 Thread Chris Lattner
Changes in directory llvm/lib/Transforms/Instrumentation: RSProfiling.cpp updated: 1.10 - 1.11 --- Log message: Detemplatize the Statistic class. The only type it is instantiated with is 'unsigned'. --- Diffs of the changes: (+1 -1) RSProfiling.cpp |2 +- 1 files changed, 1

[llvm-commits] CVS: llvm/lib/Transforms/Instrumentation/RSProfiling.cpp TraceBasicBlocks.cpp

2006-11-02 Thread Reid Spencer
Changes in directory llvm/lib/Transforms/Instrumentation: RSProfiling.cpp updated: 1.8 - 1.9 TraceBasicBlocks.cpp updated: 1.16 - 1.17 --- Log message: For PR786: http://llvm.org/PR786 : Turn on -Wunused and -Wno-unused-parameter. Clean up most of the resulting fall out by removing unused

[llvm-commits] CVS: llvm/lib/Transforms/Instrumentation/RSProfiling.cpp RSProfiling.h

2006-05-24 Thread Chris Lattner
Changes in directory llvm/lib/Transforms/Instrumentation: RSProfiling.cpp updated: 1.4 - 1.5 RSProfiling.h updated: 1.2 - 1.3 --- Log message: Patches to make the LLVM sources more -pedantic clean. Patch provided by Anton Korobeynikov! This is a step towards closing PR786: