aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/Utils/LowerSwitch.cpp
Commit message (Expand)AuthorAgeFilesLines
* Finishing initial docs for all transformations in Passes.html.Gordon Henriksen2007-11-041-3/+3
* Add std:: to sort calls.Dan Gohman2007-11-021-1/+1
* Change illegal uses of ++ to uses of STLExtra.h's next function.Dan Gohman2007-11-021-1/+2
* Fix typo in comment.Nick Lewycky2007-05-061-1/+1
* Drop 'const'Devang Patel2007-05-031-2/+2
* Use 'static const char' instead of 'static const int'.Devang Patel2007-05-021-2/+2
* Do not use typeinfo to identify pass in pass manager.Devang Patel2007-05-011-0/+4
* remove use of BasicBlock::getNextChris Lattner2007-04-171-2/+4
* Removed tabs everywhere except autogenerated & external files. Add makeAnton Korobeynikov2007-04-161-1/+1
* Unbreak VC++ build. Do not use identifiers starting with _ as they are reser...Jeff Cohen2007-03-121-3/+3
* Use range tests in LowerSwitch, where possibleAnton Korobeynikov2007-03-101-31/+114
* Make sure debug code is not evaluated in non-debug case.Reid Spencer2007-03-021-2/+3
* 1. Sort switch cases using APInt safe comparison.Reid Spencer2007-03-021-2/+2
* For PR950:Reid Spencer2006-12-311-3/+1
* For PR950:Reid Spencer2006-12-231-4/+3
* switch more statistics over to STATISTIC, eliminating static ctors. Also,Chris Lattner2006-12-191-3/+0
* Added an automatic cast to "std::ostream*" etc. from OStream. We then canBill Wendling2006-12-171-1/+6
* Changed llvm_ostream et all to OStream. llvm_cerr, llvm_cout, llvm_null, areBill Wendling2006-12-071-2/+1
* Detemplatize the Statistic class. The only type it is instantiated withChris Lattner2006-12-061-1/+1
* Remove #include <iostream> and use llvm_* streams instead.Bill Wendling2006-11-261-8/+6
* For PR950:Reid Spencer2006-10-201-5/+6
* eliminate RegisterOpt. It does the same thing as RegisterPass.Chris Lattner2006-08-271-1/+1
* s|llvm/Support/Visibility.h|llvm/Support/Compiler.h|Chris Lattner2006-08-271-1/+1
* Shrink libllvmgcc.dylib by another 23KChris Lattner2006-06-281-1/+2
* Declare that lowerinvoke doesn't interact with other lowering passes.Chris Lattner2006-05-171-3/+5
* Patch to make some xforms preserve each other. Patch contributed byChris Lattner2006-05-091-1/+10
* Add pass ID's for various passes, so they can be AddRequiredID. Patch byChris Lattner2006-05-021-0/+2
* Make iostream #inclusion explicitChris Lattner2006-01-221-0/+1
* Remove trailing whitespaceMisha Brukman2005-04-211-2/+2
* Convert code to compile with vc7.1.Reid Spencer2004-09-151-4/+4
* Fixes to make LLVM compile with vc7.1.Alkis Evlogimenos2004-09-031-0/+1
* Changes For Bug 352Reid Spencer2004-09-011-2/+2
* Fix #includes of i*.h => Instructions.h as per PR403.Misha Brukman2004-07-291-3/+1
* Do not create empty basic blocks when the lowerswitch pass expects blocks toChris Lattner2004-03-141-5/+2
* Fix incorrect debug codeChris Lattner2004-02-251-1/+2
* Finegrainify namespacificationChris Lattner2004-01-091-9/+6
* Minor cleanups and simplificationsChris Lattner2003-11-211-3/+3
* Start using the nicer terminator auto-insertion APIChris Lattner2003-11-201-7/+5
* Put all LLVM code into the llvm namespace, as per bug 109.Brian Gaeke2003-11-111-0/+4
* Added LLVM project notice to the top of every C++ source file.John Criswell2003-10-201-0/+7
* Bill contributed this major rewrite of the -lowerswitch pass to make it generateChris Lattner2003-10-071-44/+144
* Fix bug: LowerSwitch/2003-08-23-EmptySwitch.llChris Lattner2003-08-231-0/+7
* Factory methods for FunctionPasses now return type FunctionPass *.Brian Gaeke2003-08-131-1/+1
* Fix Bug: LowerSwitch/2003-05-01-PHIProblem.llChris Lattner2003-05-011-2/+12
* New pass to lower switch instructions to branch instructionsChris Lattner2003-04-231-0/+102