- Nov 05, 2003
-
-
Chris Lattner authored
in final cleanups. Then you had to run the whole mess again with -disable-final-cleanups. This makes bugpoint run the cleanups in a protected environment so that if they crash, bugpoint itself doesn't crash. This makes things much happier, implements a FIXME, and gets rid of YABPO (yet another bugpoint option). llvm-svn: 9743
-
Chris Lattner authored
llvm-svn: 9742
-
Chris Lattner authored
llvm-svn: 9741
-
Chris Lattner authored
llvm-svn: 9740
-
Chris Lattner authored
llvm-svn: 9739
-
Chris Lattner authored
llvm-svn: 9738
-
Brian Gaeke authored
llvm-svn: 9737
-
Chris Lattner authored
llvm-svn: 9736
-
Chris Lattner authored
llvm-svn: 9735
-
Misha Brukman authored
llvm-svn: 9734
-
Chris Lattner authored
llvm-svn: 9733
-
Chris Lattner authored
llvm-svn: 9732
-
Chris Lattner authored
llvm-svn: 9731
-
Misha Brukman authored
get just the filename and not the full path, just use the filename directly. llvm-svn: 9730
-
Misha Brukman authored
llvm-svn: 9729
-
Chris Lattner authored
llvm-svn: 9728
-
Chris Lattner authored
Be gcc 3.4 clean llvm-svn: 9727
-
Chris Lattner authored
llvm-svn: 9726
-
Chris Lattner authored
llvm-svn: 9725
-
Chris Lattner authored
llvm-svn: 9724
-
Alkis Evlogimenos authored
that works only for std::pair. llvm-svn: 9723
-
Chris Lattner authored
llvm-svn: 9722
-
Chris Lattner authored
llvm-svn: 9721
-
Chris Lattner authored
llvm-svn: 9720
-
Chris Lattner authored
llvm-svn: 9719
-
Chris Lattner authored
llvm-svn: 9718
-
Chris Lattner authored
llvm-svn: 9717
-
Brian Gaeke authored
llvm-svn: 9716
-
Chris Lattner authored
- // ~(c-X) == X-(c-1) == X+(-c+1) + // ~(c-X) == X-c-1 == X+(-c-1) Implement: C - ~X == X + (1+C) llvm-svn: 9715
-
Chris Lattner authored
llvm-svn: 9714
-
Brian Gaeke authored
llvm-svn: 9713
-
Brian Gaeke authored
llvm-svn: 9712
-
Chris Lattner authored
llvm-svn: 9711
-
Chris Lattner authored
llvm-svn: 9710
-
Chris Lattner authored
Add negate overload llvm-svn: 9709
-
Chris Lattner authored
llvm-svn: 9708
-
Chris Lattner authored
llvm-svn: 9707
-
Chris Lattner authored
for converting a number that is a power of two into a mask llvm-svn: 9706
-
Alkis Evlogimenos authored
negative instruction count is returned if instructions are removed from a basic block. llvm-svn: 9705
-
- Nov 04, 2003
-
-
Alkis Evlogimenos authored
return the number of instructions added to/removed from the basic block passed as their first argument. Note: This is only needed because we use a std::vector instead of an ilist to keep MachineBasicBlock instructions. Inserting an instruction to a MachineBasicBlock invalidates all iterators to the basic block. The return value can be used to update an index to the machine basic block instruction vector and circumvent the iterator elimination problem but this is really not needed if we move to a better representation. llvm-svn: 9704
-