summaryrefslogtreecommitdiffstats
path: root/llvm/utils/findmisopt
Commit message (Collapse)AuthorAgeFilesLines
* Delete -std-compile-opts.Rafael Espindola2014-10-161-2/+2
| | | | | | These days -std-compile-opts was just a silly alias for -O3. llvm-svn: 219951
* Remove llvm-ld and llvm-stub (which is only used by llvm-ld).Michael J. Spencer2012-04-191-2/+1
| | | | | | | | | | | | | | | | llvm-ld is no longer useful and causes confusion and so it is being removed. * Does not work very well on Windows because it must call a gcc like driver to assemble and link. * Has lots of hard coded paths which are wrong on many systems. * Does not understand most of ld's options. * Can be partially replaced by llvm-link | opt | {llc | as, llc -filetype=obj} | ld, or fully replaced by Clang. I know of no production use of llvm-ld, and hacking use should be replaced by Clang's driver. llvm-svn: 155147
* Convert a bunch of uses of 'bytecode' into 'bitcode'. ThisDuncan Sands2010-09-291-2/+2
| | | | | | is not everything, but the remaining cases are less trivial. llvm-svn: 115080
* Make use of the llvm-ld tool's new ability to read input from stdin to extractReid Spencer2007-08-131-7/+7
| | | | | | | the list of link time passes to be run, just as for opt, with the -debug-pass=Arguments option. llvm-svn: 41040
* Now that llvm-ld can accept - as input from stdin, use this feature to extractReid Spencer2007-08-111-2/+2
| | | | | | the pass arguments that it supports. llvm-svn: 41019
* Use opt to generate the list of passes to run.Reid Spencer2007-02-051-5/+5
| | | | llvm-svn: 33903
* Allow the input of the test program to be specified.Reid Spencer2006-12-091-5/+11
| | | | | | Don't generate the reference output for each comparison. llvm-svn: 32395
* Add the -ldl library option.Reid Spencer2006-12-081-2/+3
| | | | llvm-svn: 32369
* Only show the first few lines of difference.Reid Spencer2006-11-251-1/+1
| | | | llvm-svn: 31901
* Stop early if there is no mis-optimization.Reid Spencer2006-11-221-0/+9
| | | | llvm-svn: 31893
* Provide a list of gccld optimization switches.Reid Spencer2006-11-181-1/+4
| | | | llvm-svn: 31849
* Use a release version of bugpoint, if found. Include gccld passes.Reid Spencer2006-11-161-5/+19
| | | | llvm-svn: 31786
* Add some output so the user is informed while they wait.Reid Spencer2006-11-131-3/+14
| | | | llvm-svn: 31700
* Add -lstdc++ to the link line for C++ programs.Reid Spencer2006-11-111-2/+2
| | | | llvm-svn: 31678
* Don't run bugpoint if we can't find a misoptimization.Reid Spencer2006-11-091-2/+6
| | | | llvm-svn: 31582
* Print a usage message if too few arguments to program.Reid Spencer2006-11-091-0/+5
| | | | llvm-svn: 31581
* Add a utility script to find a mis-optimization problem. This sometimesReid Spencer2006-11-091-0/+125
helps when bugpoint can't find the problem directly because it needs the set of optimizations that cause the program to fail. llvm-svn: 31580
OpenPOWER on IntegriCloud