summaryrefslogtreecommitdiffstats
path: root/llvm/tools/opt
Commit message (Collapse)AuthorAgeFilesLines
...
* Re-introduce the -q option and make opt always return 0, even if theReid Spencer2004-05-271-3/+7
| | | | | | | optimization pasess fail. This is necessary to avoid breaking feature tests in the tests suite that depend on this behavior. *sigh* llvm-svn: 13832
* Removed the -q option and the default message written to stderr. TheReid Spencer2004-05-271-6/+3
| | | | | | output produces confusing results in TestRunner.sh llvm-svn: 13828
* Header file movedChris Lattner2004-05-271-1/+1
| | | | llvm-svn: 13813
* Fix wonky headerChris Lattner2004-04-021-2/+14
| | | | | | Address PR305: LLVM tools will happily spew bytecode onto your terminal llvm-svn: 12602
* Make sure to print a stack trace whenever an error signal is delivered to theChris Lattner2004-02-191-0/+1
| | | | | | tool. llvm-svn: 11632
* Make 'opt -o -' work correctly instead of creating a file named './-'Chris Lattner2003-12-101-2/+2
| | | | llvm-svn: 10359
* Put all LLVM code into the llvm namespace, as per bug 109.Brian Gaeke2003-11-111-0/+1
| | | | llvm-svn: 9903
* Added LLVM copyright to Makefiles.John Criswell2003-10-201-0/+8
| | | | llvm-svn: 9314
* Removed extraneous comment line.John Criswell2003-10-201-1/+0
| | | | llvm-svn: 9308
* Added copyright header to all C++ source files.John Criswell2003-10-201-0/+8
| | | | llvm-svn: 9291
* Fix grammar.Misha Brukman2003-10-101-1/+1
| | | | llvm-svn: 9026
* Remove instloops libraryChris Lattner2003-07-211-1/+1
| | | | llvm-svn: 7210
* Added pass to instrument backedges for lightweight tracingAnand Shukla2003-07-181-2/+1
| | | | llvm-svn: 7202
* Converted tabs to spaces.Misha Brukman2003-07-101-1/+1
| | | | llvm-svn: 7139
* Use $(PLATFORMLIBDL) to selectively bring in -ldl only on those platforms whereBrian Gaeke2003-06-171-1/+1
| | | | | | it is needed. llvm-svn: 6753
* Kill using declarationsChris Lattner2003-05-221-15/+13
| | | | llvm-svn: 6292
* Make sure to create a target data that matches the Module's target properties.Chris Lattner2003-04-241-0/+3
| | | | llvm-svn: 5904
* Remove support for "target data" pass ctorsChris Lattner2003-04-241-5/+0
| | | | llvm-svn: 5900
* Don't support codegen passes in optChris Lattner2003-04-161-0/+2
| | | | llvm-svn: 5797
* Remove codegen libraries to speed up linking optChris Lattner2003-04-161-3/+2
| | | | llvm-svn: 5796
* Give verbose error messages if bytecode file cannot be parsedChris Lattner2003-04-161-2/+7
| | | | llvm-svn: 5789
* Rename -no-* to -disable-*Chris Lattner2003-02-261-2/+3
| | | | llvm-svn: 5642
* Add new -no-verify optionChris Lattner2003-02-121-1/+5
| | | | llvm-svn: 5542
* Add a new -no-output option, useful for -aa-eval tests.Chris Lattner2003-02-121-1/+5
| | | | llvm-svn: 5541
* ipa.a only needs to be mentioned once, and spaces should be used instead ofMisha Brukman2002-12-121-6/+3
| | | | | | tabs for readability. llvm-svn: 4970
* Repeat ipa.a. Since IPModRef is currently only used in analysis.o,Vikram S. Adve2002-12-091-1/+1
| | | | | | it was causing linking errors. llvm-svn: 4959
* Remove extra target.a entryChris Lattner2002-11-191-1/+1
| | | | llvm-svn: 4756
* No need to explicitly inclue ExportSymbols nowChris Lattner2002-11-041-1/+1
| | | | llvm-svn: 4543
* Rename Sparc.h TargetMachineImpls.hChris Lattner2002-10-291-1/+1
| | | | llvm-svn: 4409
* Add codegen libraryChris Lattner2002-10-281-1/+2
| | | | llvm-svn: 4305
* Temporary change to make datastructure stuff link in rightChris Lattner2002-10-011-1/+1
| | | | llvm-svn: 4005
* Renamed library preselect to preopts.Vikram S. Adve2002-09-201-1/+1
| | | | llvm-svn: 3841
* KEEP_SYMBOLS by default.Vikram S. Adve2002-09-181-0/+2
| | | | llvm-svn: 3813
* Enable correct support for dynamic loading on LinuxChris Lattner2002-09-171-1/+1
| | | | llvm-svn: 3780
* Remove duplicate sparc entry.Vikram S. Adve2002-09-161-1/+1
| | | | llvm-svn: 3762
* Use .o files instead of .a files for several cases (that don't actuallyVikram S. Adve2002-09-161-2/+2
| | | | | | need them) until other Makefiles can be updated to build archives. llvm-svn: 3761
* Add support for optimization passes that use a TargetMachine object.Vikram S. Adve2002-09-162-7/+20
| | | | llvm-svn: 3752
* Link to analysis.o not analysis.aChris Lattner2002-08-301-1/+1
| | | | llvm-svn: 3537
* Fixed linking problems that wanted me to link to analyze.o instead of analyze.aChris Lattner2002-08-211-1/+1
| | | | | | so now we can link to analyze.a again. llvm-svn: 3433
* Link in all analyses so that we get pointer analysis support built inChris Lattner2002-08-211-1/+1
| | | | llvm-svn: 3427
* Change command line option message on -q to make it more accurateChris Lattner2002-07-311-1/+1
| | | | llvm-svn: 3177
* Print the tool name when an error comes from so that I can tell whichChris Lattner2002-07-301-5/+6
| | | | | | tool of a pipeline is having issues. llvm-svn: 3168
* Factor PassNamePArser out into llvm/Support/PassNameParser.hChris Lattner2002-07-261-63/+3
| | | | llvm-svn: 3109
* *** empty log message ***Chris Lattner2002-07-251-1/+1
| | | | llvm-svn: 3087
* Use the pass registration mechanism to populate command line options forChris Lattner2002-07-231-142/+77
| | | | | | opt, not huge explicit gross tables. llvm-svn: 3021
* *** empty log message ***Chris Lattner2002-07-231-1/+3
| | | | llvm-svn: 3002
* *** empty log message ***Chris Lattner2002-07-221-8/+22
| | | | llvm-svn: 2985
* Removed emitfuncs: now its part of instrument libraryAnand Shukla2002-07-161-1/+1
| | | | llvm-svn: 2929
* added emitfuncs pass, and disabled reassociate pass (needs fixing)Anand Shukla2002-07-121-2/+5
| | | | llvm-svn: 2885
* Added emitfuncs passAnand Shukla2002-07-121-1/+1
| | | | llvm-svn: 2884
OpenPOWER on IntegriCloud