aboutsummaryrefslogtreecommitdiffstats
path: root/lib/AsmParser/llvmAsmParser.y
Commit message (Expand)AuthorAgeFilesLines
* Enable first-class aggregates support.Dan Gohman2008-07-231-6/+25
* Implement PR2538Chris Lattner2008-07-111-0/+24
* Fix some signed vs. unsigned issues in array and vector handling.Dan Gohman2008-06-241-10/+10
* Fix the types for NumElements variables, and add a commentDan Gohman2008-06-231-7/+9
* AsmParser support for immediate constant aggregate values.Dan Gohman2008-06-091-7/+75
* IR, bitcode reader, bitcode writer, and asmparser changes toDan Gohman2008-05-311-32/+24
* Don't silently truncate array extents to 32 bits.Dan Gohman2008-05-231-1/+1
* Issue errors in several situations instead of aborting.Dan Gohman2008-05-231-7/+21
* Make structs and arrays first-class types, and add assemblyDan Gohman2008-05-231-2/+77
* API change for {BinaryOperator|CmpInst|CastInst}::create*() --> Create. Legac...Gabor Greif2008-05-161-7/+7
* IR support for extractvalue and insertvalue instructions. Also, beginDan Gohman2008-05-151-3/+2
* Fix a bunch of 80col violations that arose from the Create API change. Tweak ...Gabor Greif2008-05-151-1/+2
* CommonLinkage (missed a file)Dale Johannesen2008-05-141-1/+2
* Add two new instructions to the llvm IR, vicmp and vfcmp. see updated LangRefNate Begeman2008-05-121-1/+39
* Remove 'unwinds to' support from mainline. This patch undoes r47802 r47989Nick Lewycky2008-04-251-14/+5
* Allow llvm-as to parse a getresult with an undef operand.Dan Gohman2008-04-231-1/+1
* Validate that the result of a function type is valid using sharedChris Lattner2008-04-231-6/+15
* Switch to using Simplified ConstantFP::get API.Chris Lattner2008-04-201-3/+3
* Teach llvm-as to accept function types with multiple return types.Dan Gohman2008-04-191-0/+1
* API changes for class Use size reduction, wave 1.Gabor Greif2008-04-061-19/+19
* Reimplement the parameter attributes support, phase #1. hilights:Chris Lattner2008-03-121-59/+28
* Turn unwind_to into "unwinds to".Nick Lewycky2008-03-101-5/+5
* Add an unwind_to field to basic blocks, making them Users instead of Values.Nick Lewycky2008-03-021-18/+24
* Add assert.Devang Patel2008-02-261-2/+2
* Remove unncessary ReturnInst constructors.Devang Patel2008-02-261-1/+3
* Use isa check instead of getTypeID() check.Devang Patel2008-02-231-1/+1
* To support multiple return values, now ret instruction supports multiple oper...Devang Patel2008-02-231-23/+3
* Split ParameterAttributes.h, putting the complicatedDale Johannesen2008-02-221-0/+1
* Use SymbolicValueRef to parse getresult operandDevang Patel2008-02-221-3/+2
* Pass alignment on ByVal parameters, from FE, allDale Johannesen2008-02-221-1/+2
* ParseDevang Patel2008-02-201-3/+37
* Support alignment within ParamAttrs in the I/O handling.Dale Johannesen2008-02-201-0/+1
* Specify GetResultInst index as an unsigned.Devang Patel2008-02-201-1/+1
* Fix newly-introduced 4.3 warningsAnton Korobeynikov2008-02-201-1/+2
* ParseDevang Patel2008-02-191-1/+10
* Expand ParameterAttributes to 32 bits (in preparationDale Johannesen2008-02-191-1/+1
* Fix PR2060 by rejecting invalid types for integer constants.Chris Lattner2008-02-191-11/+15
* If there are attributes on the varargs part of aDuncan Sands2008-01-111-2/+16
* Remove attribution from file headers, per discussion on llvmdev.Chris Lattner2007-12-291-2/+2
* Change the PointerType api for creating pointer types. The old functionality ...Christopher Lamb2007-12-171-3/+3
* Implement part of review feedback for address spaces.Christopher Lamb2007-12-121-27/+13
* Implement address space attribute for LLVM pointer types. Address spaces are Christopher Lamb2007-12-111-5/+26
* Adding a collector name attribute to Function in the IR. These Gordon Henriksen2007-12-101-3/+13
* Fix fallout from my last patch: don't reject varargs functions :)Anton Korobeynikov2007-12-031-7/+14
* More sanity checks for function types. Anton Korobeynikov2007-12-031-1/+13
* Add a convenience method for modifying parameterDuncan Sands2007-11-301-3/+3
* Fix PR1146: parameter attributes are longer part ofDuncan Sands2007-11-271-86/+88
* Rename the 'const' parameter attribute to 'readnone',Duncan Sands2007-11-221-3/+3
* Replace the original flex lexer with a hand writen one. This Chris Lattner2007-11-181-43/+14
* Basic non-power-of-2 vector supportNate Begeman2007-11-151-2/+0