| Commit message (Expand) | Author | Age | Files | Lines |
* | Add support for naked functions | Anton Korobeynikov | 2009-07-17 | 1 | -0/+1 |
* | Revert yesterday's change by removing the LLVMContext parameter to AllocaInst... | Owen Anderson | 2009-07-15 | 1 | -2/+2 |
* | Move EVER MORE stuff over to LLVMContext. | Owen Anderson | 2009-07-14 | 1 | -2/+2 |
* | llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable. | Edwin Török | 2009-07-14 | 1 | -2/+2 |
* | assert(0) -> LLVM_UNREACHABLE. | Edwin Török | 2009-07-11 | 1 | -2/+3 |
* | This started as a small change, I swear. Unfortunately, lots of things call ... | Owen Anderson | 2009-07-09 | 1 | -2/+2 |
* | Fix thinko. | Devang Patel | 2009-07-08 | 1 | -1/+1 |
* | Drop "constant" from | Devang Patel | 2009-07-08 | 1 | -3/+1 |
* | Support MDNode forward reference. | Devang Patel | 2009-07-08 | 1 | -3/+32 |
* | Switch GlobalVariable ctors to a sane API, where *either* a context or a modu... | Owen Anderson | 2009-07-08 | 1 | -7/+6 |
* | Remove the vicmp and vfcmp instructions. Because we never had a release with | Nick Lewycky | 2009-07-08 | 1 | -32/+7 |
* | Push LLVMContext through GlobalVariables and IRBuilder. | Owen Anderson | 2009-07-08 | 1 | -3/+4 |
* | switch the .ll parser to use SourceMgr. | Chris Lattner | 2009-07-02 | 1 | -4/+4 |
* | Use LLVMContext for generating MDStrings too. | Owen Anderson | 2009-07-02 | 1 | -1/+1 |
* | Use LLVMContext to generate metadata constants. | Owen Anderson | 2009-07-02 | 1 | -1/+1 |
* | Use LLVMContext for generating UndefValue constants too! | Owen Anderson | 2009-07-02 | 1 | -7/+7 |
* | Try again at converting the LLParser to use LLVMContext, without massive brea... | Owen Anderson | 2009-07-01 | 1 | -45/+51 |
* | --- Reverse-merging (from foreign repository) r74648 into '.': | Bill Wendling | 2009-07-01 | 1 | -4/+3 |
* | Convert LLParser to use LLVMContext for creating constants. | Owen Anderson | 2009-07-01 | 1 | -3/+4 |
* | Support stand alone metadata syntax. | Devang Patel | 2009-07-01 | 1 | -0/+40 |
* | improve the APIs for creating struct and function types with no arguments/ele... | Chris Lattner | 2009-07-01 | 1 | -1/+1 |
* | Address review comments: add 3 ARM calling conventions. | Anton Korobeynikov | 2009-06-16 | 1 | -1/+7 |
* | Fix a typo in a diagnostic. | Dan Gohman | 2009-06-15 | 1 | -1/+1 |
* | Fix old-style type names in comments. | Dan Gohman | 2009-06-14 | 1 | -3/+3 |
* | Create FunctionType::isValidArgumentType to go along with isValidReturnType. | Nick Lewycky | 2009-06-07 | 1 | -5/+11 |
* | Refuse metadata* type for function arguments. | Nick Lewycky | 2009-06-07 | 1 | -1/+3 |
* | Add new function attribute - noimplicitfloat | Devang Patel | 2009-06-05 | 1 | -19/+20 |
* | Split the Add, Sub, and Mul instruction opcodes into separate | Dan Gohman | 2009-06-04 | 1 | -2/+10 |
* | Add new function attribute - noredzone. | Devang Patel | 2009-06-04 | 1 | -1/+1 |
* | Use v.data() instead of &v[0] when SmallVector v might be empty. | Jay Foad | 2009-05-21 | 1 | -9/+9 |
* | Make MDNode use CallbackVH. Also change MDNode to store Value* instead of | Nick Lewycky | 2009-05-10 | 1 | -9/+17 |
* | testcase and asmparser fix for PR4066 | Chris Lattner | 2009-04-25 | 1 | -2/+5 |
* | Fix warning in .ll parser, detect and reject available_externally on function | Nick Lewycky | 2009-04-13 | 1 | -0/+1 |
* | Add a new "available_externally" linkage type. This is intended | Chris Lattner | 2009-04-13 | 1 | -0/+3 |
* | Add support for embedded metadata to LLVM. This introduces two new types of | Nick Lewycky | 2009-04-04 | 1 | -1/+42 |
* | Fix a bug in our autoupgrade support: in an argument list to a function | Chris Lattner | 2009-03-25 | 1 | -4/+8 |
* | It makes no sense to have a ODR version of common | Duncan Sands | 2009-03-11 | 1 | -6/+2 |
* | Remove the one-definition-rule version of extern_weak | Duncan Sands | 2009-03-11 | 1 | -13/+7 |
* | Fix two classes of bugs. First: | Chris Lattner | 2009-03-09 | 1 | -15/+33 |
* | Introduce new linkage types linkonce_odr, weak_odr, common_odr | Duncan Sands | 2009-03-07 | 1 | -21/+40 |
* | Fix a pretty awesome bug that only happened in a strange case with anonymous | Chris Lattner | 2009-03-01 | 1 | -8/+11 |
* | reject 0 element vectors with: | Chris Lattner | 2009-02-28 | 1 | -0/+2 |
* | add proper asmwriter and asmparser support for anonymous functions. | Chris Lattner | 2009-02-18 | 1 | -3/+13 |
* | Pacify gcc-4.3 (thinks IsConstant may be used | Duncan Sands | 2009-02-10 | 1 | -1/+3 |
* | Use slightly more correct grammar in error messages. | Dan Gohman | 2009-02-09 | 1 | -2/+2 |
* | fix typo | Chris Lattner | 2009-02-08 | 1 | -1/+1 |
* | reject void pointers with a nice error: | Chris Lattner | 2009-02-08 | 1 | -1/+5 |
* | Reapply 63765. Patches for clang and llvm-gcc to follow. | Dale Johannesen | 2009-02-05 | 1 | -9/+0 |
* | Reverting 63765. This broke the build of both clang | Dale Johannesen | 2009-02-04 | 1 | -0/+9 |
* | New feature: add support for target intrinsics being defined in the | Nate Begeman | 2009-02-04 | 1 | -9/+0 |