| Commit message (Expand) | Author | Age | Files | Lines |
* | There are two ways of checking for a given type, for example isa<PointerType>(T) | Duncan Sands | 2010-02-16 | 2 | -2/+2 |
* | Replace strcpy with memcpy when we have the length around anyway. | Benjamin Kramer | 2010-01-28 | 1 | -6/+2 |
* | remove obsolete comment. | Chris Lattner | 2010-01-16 | 1 | -5/+2 |
* | bugpoint doesn't need the mangler at all. DisambiguateGlobalSymbols | Chris Lattner | 2010-01-16 | 1 | -25/+5 |
* | switch liblto to use the new getNameWithPrefix() method instead of getMangled... | Chris Lattner | 2010-01-16 | 1 | -2/+2 |
* | Make bugpoint pass -load arguments to LLI. This lets one use bugpoint with | Duncan Sands | 2009-11-17 | 1 | -4/+5 |
* | Add compare_lower and equals_lower methods to StringRef. Switch all users of | Benjamin Kramer | 2009-11-12 | 1 | -3/+3 |
* | Introduce and use convenience methods for getting pointer types | Duncan Sands | 2009-10-06 | 1 | -2/+2 |
* | Remove the default value for ConstantStruct::get's isPacked parameter and | Nick Lewycky | 2009-09-19 | 1 | -2/+2 |
* | Add -output-prefix option to bugpoint (to change the default output name). | Daniel Dunbar | 2009-09-07 | 4 | -11/+23 |
* | Make bugpoint use ParseIRFile instead of doing the same thing manually. | Dan Gohman | 2009-09-03 | 1 | -12/+5 |
* | only print the override triple if it exists! | Chris Lattner | 2009-08-31 | 1 | -2/+3 |
* | Make LLVM command-line tools overwrite their output files without -f. | Dan Gohman | 2009-08-25 | 3 | -6/+4 |
* | prune the #includes in raw_ostream.h by moving a | Chris Lattner | 2009-08-24 | 1 | -0/+1 |
* | Prune #includes from llvm/Linker.h and llvm/System/Path.h, | Chris Lattner | 2009-08-23 | 7 | -56/+63 |
* | eliminate the ostream version of CheckBitcodeOutputToConsole, | Chris Lattner | 2009-08-23 | 1 | -0/+1 |
* | eliminate the std::ostream forms of the bitcode writing APIs. | Chris Lattner | 2009-08-23 | 1 | -15/+17 |
* | Change raw_fd_ostream to take flags as an optional bitmask | Chris Lattner | 2009-08-23 | 1 | -3/+2 |
* | Proper MSVC build fix (and remove my hack again). Patch by Yonggang Luo. | Benjamin Kramer | 2009-08-19 | 1 | -7/+2 |
* | Add a hack to unbreak MSVC builds. str(n)casecmp are POSIX functions and aren... | Benjamin Kramer | 2009-08-19 | 1 | -0/+5 |
* | Include valgrind in the steps to reproduce if valgrind was used to reproduce | Nick Lewycky | 2009-08-18 | 1 | -0/+1 |
* | Change bugpoint to use Triple to make runtime decisions. | Daniel Dunbar | 2009-08-18 | 5 | -36/+64 |
* | Push LLVMContexts through the IntegerType APIs. | Owen Anderson | 2009-08-13 | 3 | -18/+25 |
* | Make LLVMContext and LLVMContextImpl classes instead of structs. | Benjamin Kramer | 2009-08-11 | 1 | -1/+1 |
* | MSVC warning fixes; patch by Stein Roger! | Daniel Dunbar | 2009-08-07 | 1 | -1/+1 |
* | Privatize the StructType table, which unfortunately involves routing contexts... | Owen Anderson | 2009-08-05 | 1 | -1/+2 |
* | Use (void *)(intptr_t) to cast function addresses to void* | Dan Gohman | 2009-08-05 | 1 | -8/+4 |
* | Fix FindExecutable to use sys::Path::GetMainExecutable instead of | Dan Gohman | 2009-08-05 | 5 | -37/+40 |
* | Pass user only if it's non-empty. Patch by Sandeep. | Anton Korobeynikov | 2009-08-05 | 1 | -2/+4 |
* | Add save-temps option to bugpoint to keep temporary stuff. | Anton Korobeynikov | 2009-08-05 | 4 | -6/+14 |
* | Factor some of the constants+context related code out into a separate header,... | Owen Anderson | 2009-08-04 | 1 | -1/+1 |
* | Move a few more APIs back to 2.5 forms. The only remaining ones left to chan... | Owen Anderson | 2009-07-31 | 4 | -7/+4 |
* | Move more code back to 2.5 APIs. | Owen Anderson | 2009-07-30 | 2 | -2/+2 |
* | Move types back to the 2.5 API. | Owen Anderson | 2009-07-29 | 2 | -5/+4 |
* | Move ConstantExpr to 2.5 API. | Owen Anderson | 2009-07-29 | 1 | -1/+1 |
* | Add a bugpoint flag to disable block extraction. | David Goodwin | 2009-07-28 | 1 | -1/+5 |
* | Change ConstantArray to 2.5 API. | Owen Anderson | 2009-07-28 | 2 | -2/+2 |
* | Pass true to the Internalize parameter of createStandardLTOPasses, | Dan Gohman | 2009-07-27 | 1 | -1/+1 |
* | Move ConstantStruct back to 2.5 API. | Owen Anderson | 2009-07-27 | 1 | -1/+1 |
* | Remove Value::setName(const char*, unsigned). | Daniel Dunbar | 2009-07-26 | 1 | -2/+2 |
* | Revert the ConstantInt constructors back to their 2.5 forms where possible, t... | Owen Anderson | 2009-07-24 | 1 | -1/+1 |
* | Switch to getNameStr(). | Daniel Dunbar | 2009-07-24 | 1 | -1/+1 |
* | Get rid of the Pass+Context magic. | Owen Anderson | 2009-07-22 | 2 | -2/+2 |
* | 80 col violation. | Evan Cheng | 2009-07-21 | 1 | -9/+9 |
* | For remote execution, must cd to the executable directory since the exe expec... | David Goodwin | 2009-07-20 | 1 | -3/+4 |
* | Add -std-{compile,link}-opts to bugpoint. | Daniel Dunbar | 2009-07-20 | 1 | -0/+40 |
* | fix test | Chris Lattner | 2009-07-19 | 1 | -1/+2 |
* | DisambiguateGlobalSymbols should not mangle intrinsics. | Chris Lattner | 2009-07-19 | 1 | -2/+2 |
* | Require a remote command to exit with the exit status of the test program or ... | Viktor Kutuzov | 2009-07-18 | 1 | -11/+59 |
* | Convert more tools code from cerr and cout to errs() and outs(). | Dan Gohman | 2009-07-16 | 9 | -181/+174 |