| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Use isValidOperands() to verify GetResultInst. | Devang Patel | 2008-02-20 | 1 | -1/+2 |
* | Fix newly-introduced 4.3 warnings | Anton Korobeynikov | 2008-02-20 | 1 | -1/+1 |
* | Unbreak build with gcc 4.3: provide missed includes and silence most annoying... | Anton Korobeynikov | 2008-02-20 | 5 | -15/+27 |
* | Add Alignment field to ParameterAttributes and | Dale Johannesen | 2008-02-19 | 1 | -1/+23 |
* | Add GetResultInst. First step for multiple return value support. | Devang Patel | 2008-02-19 | 2 | -0/+30 |
* | Expand ParameterAttributes to 32 bits (in preparation | Dale Johannesen | 2008-02-19 | 5 | -42/+49 |
* | Fix some minor issues folding undef, PR2052 | Chris Lattner | 2008-02-19 | 1 | -1/+3 |
* | Simplify caller updating using a CallSite, as | Duncan Sands | 2008-02-18 | 1 | -0/+4 |
* | I got the predicate backwards in my last patch. The comment is correct, the ... | Owen Anderson | 2008-02-18 | 1 | -1/+1 |
* | Duncan pointed out that we can fast fail here, because the sret parameter of | Owen Anderson | 2008-02-18 | 1 | -1/+2 |
* | Add a predicate to Argument to check for the StructRet attribute. | Owen Anderson | 2008-02-17 | 1 | -0/+7 |
* | Some micro-optimizations. | Duncan Sands | 2008-02-16 | 1 | -4/+5 |
* | targets that support quotes for mangled names still need to escape newlines | Chris Lattner | 2008-02-15 | 1 | -0/+2 |
* | check that terminators only occur at the end of a block. This catches the | Chris Lattner | 2008-02-09 | 1 | -0/+5 |
* | Fix a typo in a comment. | Dan Gohman | 2008-02-07 | 1 | -1/+1 |
* | Add comment explaining what is lower level analysis pass. | Devang Patel | 2008-02-02 | 1 | -0/+10 |
* | Fixing a bug creating floating point constants of type other | Gordon Henriksen | 2008-02-02 | 1 | -1/+23 |
* | Fix 80-col violations. | Dan Gohman | 2008-01-29 | 3 | -10/+17 |
* | Add explicit keywords. | Dan Gohman | 2008-01-29 | 1 | -2/+2 |
* | Handle some more combinations of extend and icmp. Fixes PR1940. | Nick Lewycky | 2008-01-28 | 1 | -0/+13 |
* | Add hasByValAttr() and hasNoAliasAttr() methods to the Argument class. | Chris Lattner | 2008-01-24 | 1 | -0/+31 |
* | It turns out that in C++ it is legal to declare functions | Duncan Sands | 2008-01-21 | 1 | -6/+1 |
* | Check that sret is only used on pointers to types | Duncan Sands | 2008-01-21 | 1 | -2/+2 |
* | Be consistent with other attribute methods, and | Duncan Sands | 2008-01-21 | 1 | -1/+7 |
* | improve compatibility with mingw, patch by Alain Frisch | Chris Lattner | 2008-01-15 | 1 | -1/+1 |
* | Reformatted. It was confusing the other way. No functionality change. | Bill Wendling | 2008-01-15 | 1 | -2/+3 |
* | Simplify CallInst::hasByValArgument using a new method. | Duncan Sands | 2008-01-14 | 1 | -4/+1 |
* | I noticed that the trampoline straightening transformation could | Duncan Sands | 2008-01-14 | 1 | -0/+7 |
* | Simplify code. | Evan Cheng | 2008-01-14 | 1 | -4/+1 |
* | Allow the byval attribute for pointers to any type with | Duncan Sands | 2008-01-13 | 1 | -2/+2 |
* | Add hasByValArgument() to test if a call instruction has byval argument(s). | Evan Cheng | 2008-01-12 | 1 | -0/+11 |
* | Be more liberal in what parameter attributes are | Duncan Sands | 2008-01-12 | 1 | -31/+45 |
* | Do not allow attributes beyond a function's last | Duncan Sands | 2008-01-11 | 1 | -7/+25 |
* | Allow parameter attributes on varargs function parameters. | Evan Cheng | 2008-01-11 | 1 | -4/+3 |
* | Small cleanup for handling of type/parameter attribute | Duncan Sands | 2008-01-07 | 2 | -11/+13 |
* | The transform that tries to turn calls to bitcast functions into | Duncan Sands | 2008-01-06 | 2 | -61/+22 |
* | When transforming a call to a bitcast function into | Duncan Sands | 2008-01-06 | 1 | -1/+62 |
* | Trying that again. | Gordon Henriksen | 2008-01-03 | 1 | -1/+0 |
* | Fix a compile error on Windows. | Gordon Henriksen | 2008-01-03 | 1 | -0/+2 |
* | Remove the function attr cache for intrinsics. This does not maintain the | Chris Lattner | 2008-01-03 | 1 | -7/+1 |
* | Don't create a new ParamAttrsList (which copies the vector) just to | Chris Lattner | 2008-01-03 | 1 | -6/+6 |
* | move some code out of line, rearrange a bit. | Chris Lattner | 2008-01-03 | 1 | -6/+10 |
* | Split param attr implementation out from Function.cpp into its | Chris Lattner | 2008-01-02 | 3 | -222/+326 |
* | remove blob of #if'd out code. | Chris Lattner | 2008-01-02 | 1 | -37/+0 |
* | Fix a build issue on cygwin | Chris Lattner | 2008-01-02 | 1 | -6/+3 |
* | Adding C bindings for SwitchInst::addCase. | Gordon Henriksen | 2008-01-01 | 1 | -0/+5 |
* | Add some doxygen comments to llvm-c/Core.h. | Gordon Henriksen | 2007-12-30 | 1 | -1/+2 |
* | Remove attribution from file headers, per discussion on llvmdev. | Chris Lattner | 2007-12-29 | 27 | -54/+54 |
* | remove attribution from lib Makefiles. | Chris Lattner | 2007-12-29 | 1 | -2/+2 |
* | Adding bindings for target triple and data layout. | Gordon Henriksen | 2007-12-27 | 1 | -0/+19 |