| Commit message (Expand) | Author | Age | Files | Lines |
| * | Cast unused parameter to void. | Hans Wennborg | 2011-06-04 | 1 | -0/+1 |
| * | Declare this function here so that it doesn't get C++ mangling. | Nick Lewycky | 2011-05-15 | 1 | -0/+2 |
| * | Expose getTypeName to the C API. Patch by Patrick Walton. | Rafael Espindola | 2011-02-18 | 1 | -0/+1 |
| * | I swear I did a make clean and make before committing all this... | Michael J. Spencer | 2010-11-29 | 1 | -1/+1 |
| * | add a function to the C api to get the context out of a module, patch | Chris Lattner | 2010-11-28 | 1 | -0/+3 |
| * | add a 'LLVMConstIntOfArbitraryPrecision' api to the C api, | Chris Lattner | 2010-11-23 | 1 | -0/+3 |
| * | Next step on the getting-rid-of-static-ctors train: begin adding per-library | Owen Anderson | 2010-10-07 | 1 | -0/+10 |
| * | Add missing X86 MMX declarations. Hopefully fixes buildbot? | Dale Johannesen | 2010-09-10 | 1 | -0/+2 |
| * | Add X86 MMX type to bitcode and Type. | Dale Johannesen | 2010-09-10 | 1 | -1/+2 |
| * | remove unions from LLVM IR. They are severely buggy and not | Chris Lattner | 2010-08-28 | 1 | -10/+1 |
| * | Create the new linker type "linker_private_weak_def_auto". | Bill Wendling | 2010-08-20 | 1 | -1/+3 |
| * | Expose LLVMSetOperand and LLVMGetNumOperands to llvm-c and ocaml. | Erick Tryzelaar | 2010-08-20 | 1 | -0/+2 |
| * | Expose BasicBlock::moveBefore and moveAfter in C API, patch | Duncan Sands | 2010-07-19 | 1 | -0/+3 |
| * | Implement the "linker_private_weak" linkage type. This will be used for | Bill Wendling | 2010-07-01 | 1 | -1/+2 |
| * | Revert r107205 and r107207. | Bill Wendling | 2010-06-29 | 1 | -2/+1 |
| * | Introducing the "linker_weak" linkage type. This will be used for Objective-C | Bill Wendling | 2010-06-29 | 1 | -1/+2 |
| * | add attributes and module level asm to the ocaml bindings, | Chris Lattner | 2010-04-10 | 1 | -0/+2 |
| * | Expose alignment and stack alignment attributes to llvm-c and ocaml. | Erick Tryzelaar | 2010-03-03 | 1 | -1/+3 |
| * | Add Module functions in place of module providers. | Erick Tryzelaar | 2010-03-02 | 1 | -0/+3 |
| * | Rename LLVMUseIteratorRef to LLVMUseRef since we don't refer to iterators in ... | Erick Tryzelaar | 2010-03-02 | 1 | -10/+7 |
| * | Add support for global variables in an address space for llvm-c and ocaml. | Erick Tryzelaar | 2010-02-28 | 1 | -0/+3 |
| * | Add indirect br support to llvm-c and ocaml. | Erick Tryzelaar | 2010-02-28 | 1 | -0/+6 |
| * | Add metadata functions to llvm-c and ocaml. | Erick Tryzelaar | 2010-02-28 | 1 | -1/+23 |
| * | Add the new builder arthmetic instructions to llvm-c and ocaml. | Erick Tryzelaar | 2010-02-28 | 1 | -0/+21 |
| * | Add the new union arthmetic instructions to llvm-c and ocaml. | Erick Tryzelaar | 2010-02-28 | 1 | -0/+1 |
| * | Add generic binary op and cast builder functions. | Erick Tryzelaar | 2010-02-28 | 1 | -0/+5 |
| * | Fix a typo in an LLVMOpcode enum. LLVMTrunk -> LLVMTrunc. | Erick Tryzelaar | 2010-02-16 | 1 | -1/+1 |
| * | Remove c++ style comments from c header. | Bill Wendling | 2010-02-15 | 1 | -8/+8 |
| * | Renumber Instruction enums in llvm-c. | Bill Wendling | 2010-02-15 | 1 | -50/+62 |
| * | Add support for a union type in LLVM IR. Patch by Talin! | Chris Lattner | 2010-02-12 | 1 | -1/+9 |
| * | Reintroduce the InlineHint function attribute. | Jakob Stoklund Olesen | 2010-02-06 | 1 | -1/+2 |
| * | Kill ModuleProvider and ghost linkage by inverting the relationship between | Jeffrey Yasskin | 2010-01-27 | 1 | -12/+14 |
| * | Stop building RTTI information for *most* llvm libraries. Notable | Chris Lattner | 2010-01-22 | 1 | -1/+1 |
| * | Remove the InlineHint attribute. There are no current or planned | Eric Christopher | 2010-01-15 | 1 | -2/+1 |
| * | "In order to ease automatic bindings generation, it would be helpful if boole... | Chris Lattner | 2010-01-09 | 1 | -34/+36 |
| * | Remove dead debug info intrinsics. | Devang Patel | 2010-01-05 | 1 | -4/+0 |
| * | I forgot to update the prototype for LLVMBuildIntCast when correcting | Duncan Sands | 2009-11-23 | 1 | -1/+1 |
| * | Remove FreeInst. | Victor Hernandez | 2009-10-26 | 1 | -1/+0 |
| * | Move DataTypes.h to include/llvm/System, update all users. This breaks the last | Chandler Carruth | 2009-10-26 | 1 | -1/+1 |
| * | Remove AllocationInst. Since MallocInst went away, AllocaInst is the only su... | Victor Hernandez | 2009-10-23 | 1 | -2/+1 |
| * | Remove MallocInst from LLVM Instructions. | Victor Hernandez | 2009-10-17 | 1 | -1/+0 |
| * | add some more hooks to the C bindings, patch by Kenneth Uildriks! | Chris Lattner | 2009-10-12 | 1 | -0/+78 |
| * | Add C API calls for building FNeg operations. Patch by KS Sreeram! | Dan Gohman | 2009-09-28 | 1 | -0/+1 |
| * | Revert 80959. It isn't sufficient to solve the full problem. And it | Dan Gohman | 2009-09-03 | 1 | -0/+5 |
| * | Remove the API for creating ConstantExprs with the nsw, nuw, inbounds, | Dan Gohman | 2009-09-03 | 1 | -5/+0 |
| * | Make sure we specify no arguments for context functions. | Erick Tryzelaar | 2009-08-30 | 1 | -2/+2 |
| * | Add an 'inline hint' attribute to represent source | Dale Johannesen | 2009-08-26 | 1 | -1/+2 |
| * | Expose some extra functions to llvm-c | Erick Tryzelaar | 2009-08-19 | 1 | -1/+2 |
| * | Expose creating constant ints and floats from strings in llvm-c. | Erick Tryzelaar | 2009-08-16 | 1 | -0/+9 |
| * | Add an llvm-c function that lets you insert an instruction with a name. | Erick Tryzelaar | 2009-08-16 | 1 | -0/+2 |