- 09a695e Remove tests that checks @llvm.dbg.stoppoint handling. by Devang Patel · 15 years ago
- a756b1d Fix a crash in scalarrepl for memcpy/memmove where the source and destination by Bob Wilson · 15 years ago
- aceba31 Delete useless trailing semicolons. by Dan Gohman · 15 years ago
- f27a4cd Generalize SROA to allow the first index of a GEP to be non-zero. Add a by Bob Wilson · 15 years ago
- b742def Reapply 91459 with a simple fix for the problem that broke the x86_64-darwin by Bob Wilson · 15 years ago
- 39c88a6 Re-revert 91459. It's breaking the x86_64 darwin bootstrap. by Bob Wilson · 15 years ago
- 2674089 Reapply r91459, it was only unmasking the bug, and since TOT is still broken having it reverted does no good. by Daniel Dunbar · 15 years ago
- fca55c8 Revert "Reapply 91184 with fixes and an addition to the testcase to cover the by Daniel Dunbar · 15 years ago
- 970eaf2 Reapply 91184 with fixes and an addition to the testcase to cover the problem by Bob Wilson · 15 years ago
- bc1c99c Remove empty file completely by Shantonu Sen · 15 years ago
- a59adc4 revert r91184, because it causes a crash on a .bc file I just sent to Bob. by Chris Lattner · 15 years ago
- 73a1b67 Revise scalar replacement to be more flexible about handle bitcasts and GEPs. by Bob Wilson · 15 years ago
- 8976e59 fix PR5436 by making the 'simple' case of SRoA not promote out of range by Chris Lattner · 15 years ago
- fc159fd filecheckize by Chris Lattner · 15 years ago
- b908f8a Make opt default to not adding a target data string and update tests that depend on target data to supply it within the test by Kenneth Uildriks · 15 years ago
- f2f6ce6 Change tests from "opt %s" to "opt < %s" so that opt doesn't see the by Dan Gohman · 15 years ago
- 3e054fe Use opt -S instead of piping bitcode output through llvm-dis. by Dan Gohman · 15 years ago
- b1e1e82 Change these tests to feed the assembly files to opt directly, instead by Dan Gohman · 15 years ago
- d3aa25e Don't crash trying to promote VLAs. by Nick Lewycky · 15 years ago
- ae3a0be Split the Add, Sub, and Mul instruction opcodes into separate by Dan Gohman · 15 years ago
- 41b33f4 PR4286: Make RewriteLoadUserOfWholeAlloca and by Eli Friedman · 15 years ago
- ef55484 fix RewriteStoreUserOfWholeAlloca to use the correct type size by Chris Lattner · 16 years ago
- 33e24ad fix a crash on a pointless but valid zero-length memset, rdar://6808691 by Chris Lattner · 16 years ago
- df95a2f Fix a bug. If I->use_empty(), this method should return false. by Zhou Sheng · 16 years ago
- 29e6417 teach SROA to handle promoting vector allocas with a memset into them into by Chris Lattner · 16 years ago
- c570487 Enhance SROA to "promote to scalar" allocas which are by Chris Lattner · 16 years ago
- 00e389c While converting an aggregate to scalare, ignore and remove aggregate's debug info. by Devang Patel · 16 years ago
- 1541e0f Fix PR3720 by properly propagating alignment information from memcpy/memmove by Chris Lattner · 16 years ago
- 585cfb6 adjust for asmprinter change. by Chris Lattner · 16 years ago
- 4afc90d Enable scalar replacement of AllocaInst whose one of the user is dbg info. by Devang Patel · 16 years ago
- e991ced fix PR3489, use bits instead of bytes. by Chris Lattner · 16 years ago
- 1aa7056 teach "convert from scalar" to handle loads of fca's. by Chris Lattner · 16 years ago
- 9b872db make scalar conversion handle stores of first class by Chris Lattner · 16 years ago
- 1a3257b Make SROA produce a vector only when the alloca is actually by Chris Lattner · 16 years ago
- 67e3ba3 this produces an undefined result, just check that the alloca is gone by Chris Lattner · 16 years ago
- 55a683d add another case of undefined behavior without crashing, PR3466. by Chris Lattner · 16 years ago
- 3d730f7 Teach ConvertUsesToScalar to handle memset, allowing it to handle by Chris Lattner · 16 years ago
- 7809ecd rearrange how SRoA handles promotion of allocas to vectors. by Chris Lattner · 16 years ago
- d91a61a this test produces an undefined value, we don't care by Chris Lattner · 16 years ago
- 006336d update test by Chris Lattner · 16 years ago
- 996d7a9 Fix a bug which caused us to miscompile a couple of Ada by Chris Lattner · 16 years ago
- 2e0d5f8 Simplify and generalize the SROA "convert to scalar" transformation to by Chris Lattner · 16 years ago
- 6e733d3 Fix some issues with volatility, move "CanConvertToScalar" check by Chris Lattner · 16 years ago
- 6c8e35f strengthen this test. by Chris Lattner · 16 years ago
- 583dd60 Fix PR3304 by Chris Lattner · 16 years ago
- 5ffe6ac This implements the second half of the fix for PR3290, handling by Chris Lattner · 16 years ago
- d2fa781 Implement the first half of PR3290: if there is a store of an by Chris Lattner · 16 years ago
- 5fac55f Allow scalarrepl to treat an all-zero GEP just as bitcast. by Matthijs Kooijman · 16 years ago
- 7ab5799 Add a testcase showing that scalarrepl supports first class structs. by Matthijs Kooijman · 16 years ago
- 88e6dc8 Fix PR2423 by checking all indices for out of range access, not only by Chris Lattner · 16 years ago
- 963a97f Fix PR2369 by making scalarrepl more careful about promoting by Chris Lattner · 16 years ago
- 933b506 Fix some tests. by Evan Cheng · 16 years ago
- 888fa33 Fix some escaping and quoting in RUN lines, mainly involving { and <. In two by Matthijs Kooijman · 16 years ago
- 0251814 Learn ScalarReplAggregrates how stores and loads of first class aggregrates by Matthijs Kooijman · 16 years ago
- f6cadc4 sabre brings to my attention that the 'tr' suffix is also obsolete by Gabor Greif · 16 years ago
- 722243b Rename the last test with .llx extension to .ll, resolve duplicate test by renaming to isnan2. Now that no test has llx ending there is no need to search for them from dg.exp too. by Gabor Greif · 16 years ago
- 6832837 Upgrade tests to not use llvm-upgrade. by Tanya Lattner · 17 years ago
- 9d34c4d fix a bug Anders ran into where scalarrepl would crash when promoting by Chris Lattner · 17 years ago
- b10e0da Fix a bug where scalarrepl would discard offset if type would match. by Chris Lattner · 17 years ago
- 3cb3650 Change uses of getTypeSize to getABITypeSize, getTypeStoreSize by Duncan Sands · 17 years ago
- e644ef7 Convert .cvsignore files by John Criswell · 17 years ago
- 661c2ce Testcase for PR1421 by Chris Lattner · 17 years ago
- d20d402 testcase for PR1446 by Chris Lattner · 17 years ago
- 514630f by Chris Lattner · 18 years ago
- 54c4d40 new testcase, should be able to eliminate the alloca and memcpy by Chris Lattner · 18 years ago
- eb1d74e For PR1319: by Reid Spencer · 18 years ago
- 9aafdcf For PR1319: by Reid Spencer · 18 years ago
- 0f5aed5 Make the llvm-runtest function much more amenable by eliminating all the by Reid Spencer · 18 years ago
- 5373b72 Remove use of implementation keyword. by Reid Spencer · 18 years ago
- 404eaa3 new testcase by Chris Lattner · 18 years ago
- d7d2287 add a testcase the resent patches fail on. by Chris Lattner · 18 years ago
- 1277979 add PR# by Chris Lattner · 18 years ago
- fb73d9c add pr# by Chris Lattner · 18 years ago
- 7863a63 new testcase by Chris Lattner · 18 years ago
- 7829828 testcase for SROA with memset etc by Chris Lattner · 18 years ago
- eacb702 For PR950: by Reid Spencer · 18 years ago
- 73e7082 Update tests that need to be run through llvm-upgrade. This is necessary by Reid Spencer · 18 years ago
- d603217 reenable these by Chris Lattner · 18 years ago
- 18c3e65 xfail these until I recommit the scalarrepl patch by Chris Lattner · 18 years ago
- bcb56d8 new testcase for pr1045 by Chris Lattner · 18 years ago
- e629ff0 new testcase by Chris Lattner · 18 years ago
- 1846783 new testcase by Chris Lattner · 18 years ago
- 69ccadd Use the llvm-upgrade program to upgrade llvm assembly. by Reid Spencer · 18 years ago
- e5d4efa Promote GEP ubyte indices to uint. Backwards compatibility for 1.2 and by Reid Spencer · 18 years ago
- 03507f5 scalarrepl should not split the two elements of the vsiidx array: by Chris Lattner · 18 years ago
- f420802 extra pass is required now by Chris Lattner · 18 years ago
- b0d6dbf New testcase that crashes scalarrepl by Chris Lattner · 18 years ago
- eab5bd3 new testcase for PR892 by Chris Lattner · 18 years ago
- fc1dfd4 new testcase for SROA for stuff like "union { int*, float* }". by Chris Lattner · 18 years ago
- bcce6c2 new testcase by Chris Lattner · 19 years ago
- d8f5bd3 New testcase, checking to see we can turn this code: by Chris Lattner · 19 years ago
- 9727555 Added the ability to xfail based on llvmgcc version by Tanya Lattner · 19 years ago
- 2676f83 Tired of wading through cvs's list ? files that are generated when building by Reid Spencer · 19 years ago
- 720d210 testcase that crashes scalarrepl by Chris Lattner · 19 years ago
- fa1fb11 new (undefined) testcase, distilled from 126.gcc that scalarrepl crashes on by Chris Lattner · 19 years ago
- fa8f80a new testcase: sra should be able to eliminate all of these alloca's, despite by Chris Lattner · 19 years ago
- c8c1f12 Adding srcdir arg by Tanya Lattner · 20 years ago
- 6c84e79 New testcase, SROA with variable array index by Chris Lattner · 20 years ago
- 28b372f Adding subdirectory dg.exp files in order to be able to use dejagnu to only run specific tests (located in some subdirectory of Regression) by Tanya Lattner · 20 years ago
- 1fb6e41 Instcombine now helps out with these by Chris Lattner · 20 years ago