| Commit message (Expand) | Author | Age | Files | Lines |
* | Make GlobalValue alignment consistent with load, store, and alloca | Dan Gohman | 2010-07-28 | 1 | -0/+2 |
* | Define a maximum supported alignment value for load, store, and | Dan Gohman | 2010-07-28 | 4 | -0/+26 |
* | add newlines at the end of files. | Chris Lattner | 2010-04-07 | 1 | -1/+1 |
* | Add support for a union type in LLVM IR. Patch by Talin! | Chris Lattner | 2010-02-12 | 1 | -0/+3 |
* | Function-local metadata whose operands had been optimized to no longer refer ... | Victor Hernandez | 2010-02-06 | 1 | -0/+25 |
* | Fix (and test) function-local metadata that occurs before the instruction tha... | Victor Hernandez | 2010-02-04 | 1 | -0/+2 |
* | Improve llvm.dbg.declare intrinsic by referring directly to the storage in it... | Victor Hernandez | 2010-01-15 | 1 | -12/+17 |
* | Revert r93504 because older uses of llvm.dbg.declare intrinsics need to be au... | Victor Hernandez | 2010-01-15 | 1 | -9/+11 |
* | Improve llvm.dbg.declare intrinsic by referring directly to the storage in it... | Victor Hernandez | 2010-01-15 | 1 | -11/+9 |
* | Extend testcase to also test llvm.dbg.value intrinsic | Victor Hernandez | 2010-01-14 | 1 | -0/+7 |
* | Now that LLParser, AsmWriter, BitcodeReader, and BitcodeWriter all correctly ... | Victor Hernandez | 2010-01-14 | 1 | -8/+16 |
* | Re-add parsing of function-local metadata; this time with testcase. | Victor Hernandez | 2010-01-05 | 1 | -0/+22 |
* | Delete useless trailing semicolons. | Dan Gohman | 2010-01-05 | 1 | -3/+3 |
* | add some basic named MD tests. | Chris Lattner | 2009-12-31 | 1 | -0/+3 |
* | reimplement insertvalue/extractvalue metadata handling to not blindly | Chris Lattner | 2009-12-30 | 1 | -1/+3 |
* | fix parsing of mdstring values. | Chris Lattner | 2009-12-30 | 1 | -0/+8 |
* | Each instruction is allowed to have *multiple* different | Chris Lattner | 2009-12-29 | 1 | -3/+4 |
* | Do not crash when .ll printing metadata that smells like debug info, but isn't. | Chris Lattner | 2009-12-29 | 1 | -0/+8 |
* | Adjust testcases for msasm -> alignstack. | Dale Johannesen | 2009-10-21 | 1 | -6/+6 |
* | Add an "msasm" flag to inline asm as suggested in PR 5125. | Dale Johannesen | 2009-10-13 | 1 | -0/+36 |
* | Clean up the usage of evaluateICmpRelation's return value. | Nick Lewycky | 2009-09-20 | 1 | -0/+1 |
* | fix PR4963: folding insertvalue would sometimes turn a packed struct into | Chris Lattner | 2009-09-15 | 1 | -0/+6 |
* | Fix this test to test what it was originally intended to test. | Dan Gohman | 2009-09-11 | 1 | -1/+1 |
* | Change tests from "opt %s" to "opt < %s" so that opt doesn't see the | Dan Gohman | 2009-09-11 | 4 | -4/+4 |
* | fix test to not get a moduleid that matches 'br' | Chris Lattner | 2009-09-11 | 1 | -1/+1 |
* | Teach lib/VMCore/ConstantFold.cpp how to set the inbounds keyword and | Dan Gohman | 2009-09-11 | 1 | -1/+11 |
* | Use opt -S instead of piping bitcode output through llvm-dis. | Dan Gohman | 2009-09-08 | 6 | -6/+6 |
* | Change these tests to feed the assembly files to opt directly, instead | Dan Gohman | 2009-09-08 | 6 | -6/+6 |
* | Reappy r80998, now that the GlobalOpt bug that it exposed on MiniSAT is fixed. | Dan Gohman | 2009-09-07 | 5 | -82/+68 |
* | Revert "Include optional subclass flags, such as inbounds, nsw, etc., ...", this | Daniel Dunbar | 2009-09-06 | 5 | -68/+82 |
* | Fix spacing. | Daniel Dunbar | 2009-09-06 | 1 | -1/+1 |
* | Include optional subclass flags, such as inbounds, nsw, etc., in the | Dan Gohman | 2009-09-04 | 5 | -82/+68 |
* | Remove obsolete -f flags. | Dan Gohman | 2009-08-25 | 41 | -41/+41 |
* | Various AsmWriter output cleanups. Use WriteAsOperand instead of | Dan Gohman | 2009-08-13 | 1 | -3/+12 |
* | Extend the AsmWriter to print unnamed numbered types as "%0 = type ..." | Dan Gohman | 2009-08-12 | 1 | -0/+42 |
* | Add a new keyword 'inbounds' for use with getelementptr. See the | Dan Gohman | 2009-07-27 | 2 | -0/+24 |
* | Change the assembly syntax for nsw, nuw, and exact, putting them | Dan Gohman | 2009-07-27 | 4 | -52/+52 |
* | Fix assert assembling zero-argument constant GEP. | Eli Friedman | 2009-07-24 | 1 | -0/+5 |
* | Rename the new unsigned and signed keywords to nuw and nsw, | Dan Gohman | 2009-07-22 | 4 | -54/+54 |
* | Assembly and Bitcode support for unsigned/signed overflow flags and | Dan Gohman | 2009-07-20 | 5 | -0/+202 |
* | Apparently Darwin doesn't have /dev/full :-(. | Dan Gohman | 2009-07-15 | 1 | -3/+0 |
* | Add a testcase for raw_ostream error checking. | Dan Gohman | 2009-07-15 | 1 | -0/+3 |
* | Remove the vicmp and vfcmp instructions. Because we never had a release with | Nick Lewycky | 2009-07-08 | 1 | -6/+6 |
* | Split the Add, Sub, and Mul instruction opcodes into separate | Dan Gohman | 2009-06-04 | 2 | -2/+2 |
* | Revert this. There's no way to verifiy indirect calls, and an optimizer can turn | Torok Edwin | 2009-05-22 | 1 | -9/+0 |
* | Verify that calling conventions match function prototype. | Torok Edwin | 2009-05-22 | 1 | -0/+9 |
* | Make this test slightly more strict. | Dan Gohman | 2009-04-27 | 1 | -1/+1 |
* | Any size of integral indices are allowed in gep for indexing into sequential ... | Sanjiv Gupta | 2009-04-26 | 1 | -0/+12 |
* | add testcase for strange types of gep indices | Chris Lattner | 2009-04-25 | 1 | -0/+12 |
* | testcase and asmparser fix for PR4066 | Chris Lattner | 2009-04-25 | 1 | -0/+8 |