<feed xmlns='http://www.w3.org/2005/Atom'>
<title>llvm/test/Transforms, branch release_23</title>
<subtitle>http://llvm.org</subtitle>
<id>https://git.amat.us/llvm/atom/test/Transforms?h=release_23</id>
<link rel='self' href='https://git.amat.us/llvm/atom/test/Transforms?h=release_23'/>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/'/>
<updated>2008-05-09T05:19:28Z</updated>
<entry>
<title>Implement PR2298.  This transforms:</title>
<updated>2008-05-09T05:19:28Z</updated>
<author>
<name>Chris Lattner</name>
<email>sabre@nondot.org</email>
</author>
<published>2008-05-09T05:19:28Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=7d2cbd2d43c389c0d067d30683ffefb6e4edde66'/>
<id>urn:sha1:7d2cbd2d43c389c0d067d30683ffefb6e4edde66</id>
<content type='text'>
   ~x &lt; ~y --&gt; y &lt; x
   -x == -y --&gt; x == y



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50882 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>More than just loads can read from memory: readonly calls like strlen</title>
<updated>2008-05-08T17:37:37Z</updated>
<author>
<name>Chris Lattner</name>
<email>sabre@nondot.org</email>
</author>
<published>2008-05-08T17:37:37Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=2539e3389361115f5e75e4134bdd123171688ddc'/>
<id>urn:sha1:2539e3389361115f5e75e4134bdd123171688ddc</id>
<content type='text'>
also need to be checked for memory modifying instructions before we
can sink them.  THis fixes the second half of PR2297.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50860 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Make instcombine's DSE respect loads as well as stores.  It is not safe to</title>
<updated>2008-05-08T17:20:30Z</updated>
<author>
<name>Chris Lattner</name>
<email>sabre@nondot.org</email>
</author>
<published>2008-05-08T17:20:30Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=0ef546e639d45207b4776c80408c84170ad1cac6'/>
<id>urn:sha1:0ef546e639d45207b4776c80408c84170ad1cac6</id>
<content type='text'>
delete the first store in:

store x -&gt; p
load p
store y -&gt; p

This is for PR2297.



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50859 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Fix a bug in the ComputeMaskedBits logic for multiply.</title>
<updated>2008-05-07T00:35:55Z</updated>
<author>
<name>Dan Gohman</name>
<email>gohman@apple.com</email>
</author>
<published>2008-05-07T00:35:55Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=42ac929ed968939d22a715769e583aeed8f6c823'/>
<id>urn:sha1:42ac929ed968939d22a715769e583aeed8f6c823</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50793 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Testcase for r50770.</title>
<updated>2008-05-06T21:01:34Z</updated>
<author>
<name>Owen Anderson</name>
<email>resistor@mac.com</email>
</author>
<published>2008-05-06T21:01:34Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=f092b64a49023b4fa501da8e169d7c804ffa5614'/>
<id>urn:sha1:f092b64a49023b4fa501da8e169d7c804ffa5614</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50771 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Correct the value of LowBits in srem and urem handling in</title>
<updated>2008-05-06T00:51:48Z</updated>
<author>
<name>Dan Gohman</name>
<email>gohman@apple.com</email>
</author>
<published>2008-05-06T00:51:48Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=23e1df8b8d1d1fc8b9a20b80a47b0a2fdffe7f84'/>
<id>urn:sha1:23e1df8b8d1d1fc8b9a20b80a47b0a2fdffe7f84</id>
<content type='text'>
ComputeMaskedBits.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50692 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Fix a crash when threading a block that includes a MRV call result.</title>
<updated>2008-05-05T20:21:22Z</updated>
<author>
<name>Chris Lattner</name>
<email>sabre@nondot.org</email>
</author>
<published>2008-05-05T20:21:22Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=8554cc2ea79861ddf43998bff634d1682e848216'/>
<id>urn:sha1:8554cc2ea79861ddf43998bff634d1682e848216</id>
<content type='text'>
DemoteRegToStack doesn't work with MRVs yet, because it relies on the
ability to load/store things.

This fixes PR2285.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50667 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Fix a mistake in the computation of leading zeros for udiv.</title>
<updated>2008-05-02T21:30:02Z</updated>
<author>
<name>Dan Gohman</name>
<email>gohman@apple.com</email>
</author>
<published>2008-05-02T21:30:02Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=1d9cd506774f2d51b7e7315b07fdbcc05efebe4a'/>
<id>urn:sha1:1d9cd506774f2d51b7e7315b07fdbcc05efebe4a</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50591 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>strength reduce exp2 into ldexp, rdar://5852514</title>
<updated>2008-05-02T18:43:35Z</updated>
<author>
<name>Chris Lattner</name>
<email>sabre@nondot.org</email>
</author>
<published>2008-05-02T18:43:35Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=e818f770bb4f6617612e5b61cc067aa7da9e1395'/>
<id>urn:sha1:e818f770bb4f6617612e5b61cc067aa7da9e1395</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50586 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Update old-style syntax in some "not grep" tests.</title>
<updated>2008-05-01T23:50:07Z</updated>
<author>
<name>Dan Gohman</name>
<email>gohman@apple.com</email>
</author>
<published>2008-05-01T23:50:07Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=fddaa3193cd1bb2ef1f561efc5b7b6dbefeec7ee'/>
<id>urn:sha1:fddaa3193cd1bb2ef1f561efc5b7b6dbefeec7ee</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50560 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
</feed>
