"llvm/git@repo.hca.bsc.es:lalbano/llvm-bpevl.git" did not exist on "0841fb1d4c3ef3383b23775127019a736fc89360"
- Nov 08, 2004
-
-
Chris Lattner authored
llvm-svn: 17632
-
Chris Lattner authored
llvm-svn: 17631
-
- Nov 03, 2004
-
-
Chris Lattner authored
llvm-svn: 17457
-
- Oct 31, 2004
-
-
Chris Lattner authored
llvm-svn: 17377
-
Chris Lattner authored
llvm-svn: 17375
-
Chris Lattner authored
llvm-svn: 17367
-
- Oct 30, 2004
-
-
Chris Lattner authored
llvm-svn: 17358
-
Chris Lattner authored
1. Calls to external global VARIABLES should not be treated as a call to an external function 2. Efficiently deleting an element from a vector by using std::swap with the back, then pop_back is NOT a good way to keep the vector sorted. 3. Our hope of having stuff get deleted by making them redundant just won't work. In particular, if we have three calls in sequence that should be merged: A, B, C first we unify B into A. To be sure that they appeared identical (so B would be erased) we set B = A. On the next step, we unified C into A and set C = A. Unfortunately, this is no guarantee that C = B, so we would fail to delete the dead call. Switch to a more explicit scheme. llvm-svn: 17357
-
Chris Lattner authored
llvm-svn: 17356
-
Chris Lattner authored
* change some uses of NH.getNode() in a bool context to use !NH.isNull() * Fix a bunch of places where we depended on the (undefined) order of evaluation of arguments to function calls to ensure that getNode() was called before getOffset(). In practice, this was NOT happening. llvm-svn: 17354
-
- Oct 28, 2004
-
-
Alkis Evlogimenos authored
llvm-svn: 17306
-
- Oct 26, 2004
-
-
Chris Lattner authored
llvm-svn: 17260
-
- Oct 22, 2004
-
-
Reid Spencer authored
llvm-svn: 17155
-
- Oct 19, 2004
-
-
Reid Spencer authored
llvm-svn: 17136
-
- Oct 16, 2004
-
-
Chris Lattner authored
llvm-svn: 17055
-
- Oct 13, 2004
-
-
Reid Spencer authored
llvm-svn: 16950
-
- Oct 11, 2004
-
-
Reid Spencer authored
llvm-svn: 16892
-
- Oct 10, 2004
-
-
Reid Spencer authored
llvm-svn: 16885
-
- Oct 07, 2004
-
-
Chris Lattner authored
a map. This caused problems if a later object happened to be allocated at the free'd object's address. llvm-svn: 16813
-
- Oct 06, 2004
-
-
Chris Lattner authored
llvm-svn: 16779
-
- Sep 20, 2004
-
-
Chris Lattner authored
from ModulePass. Instead of implementing Pass::run, then should implement ModulePass::runOnModule. llvm-svn: 16436
-
- Sep 02, 2004
-
-
Reid Spencer authored
Move include/Config and include/Support into include/llvm/Config, include/llvm/ADT and include/llvm/Support. From here on out, all LLVM public header files must be under include/llvm/. llvm-svn: 16137
-
- Aug 02, 2004
-
-
Chris Lattner authored
llvm-svn: 15415
-
- Jul 29, 2004
-
-
Misha Brukman authored
llvm-svn: 15334
-
Misha Brukman authored
llvm-svn: 15328
-
- Jul 21, 2004
-
-
Brian Gaeke authored
llvm-svn: 15089
-
- Jul 18, 2004
-
-
Reid Spencer authored
- Replace ConstantPointerRef usage with GlobalValue usage - Minimize redundant isa<GlobalValue> usage - Correct isa<Constant> for GlobalValue subclass llvm-svn: 14942
-
- Jul 16, 2004
-
-
Chris Lattner authored
llvm-svn: 14864
-
- Jul 15, 2004
-
-
Chris Lattner authored
llvm-svn: 14842
-
- Jul 08, 2004
-
-
Chris Lattner authored
llvm-svn: 14682
-
- Jul 07, 2004
-
-
Chris Lattner authored
llvm-svn: 14665
-
Chris Lattner authored
llvm-svn: 14663
-
Chris Lattner authored
is HOPELESSLY broken. The problem is that the embedded getNode call can change the offset of the node handle in unpredictable ways. As it turns out, all of the clients of this method really want to set both the node and the offset, thus it is more efficient (and less buggy) to just do both of them in one method call. This fixes some obscure bugs handling non-forwarded node handles. llvm-svn: 14660
-
- Jul 04, 2004
-
-
Reid Spencer authored
llvm-svn: 14622
-
- Jun 28, 2004
-
-
Chris Lattner authored
llvm-svn: 14455
-
Chris Lattner authored
llvm-svn: 14452
-
Chris Lattner authored
llvm-svn: 14448
-
Chris Lattner authored
llvm-svn: 14446
-
- Jun 23, 2004
-
-
Chris Lattner authored
several mallocbench programs, including perl. llvm-svn: 14342
-
- Jun 22, 2004
-
-
Misha Brukman authored
llvm-svn: 14327
-