<feed xmlns='http://www.w3.org/2005/Atom'>
<title>llvm/test/Feature, branch release_31</title>
<subtitle>http://llvm.org</subtitle>
<id>https://git.amat.us/llvm/atom/test/Feature?h=release_31</id>
<link rel='self' href='https://git.amat.us/llvm/atom/test/Feature?h=release_31'/>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/'/>
<updated>2012-03-25T12:43:54Z</updated>
<entry>
<title>This file is no longer needed (DejaGNU-isms removed from code)</title>
<updated>2012-03-25T12:43:54Z</updated>
<author>
<name>Eli Bendersky</name>
<email>eli.bendersky@intel.com</email>
</author>
<published>2012-03-25T12:43:54Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=a5adcc127fd4e082139db5429d3cc848131f4c45'/>
<id>urn:sha1:a5adcc127fd4e082139db5429d3cc848131f4c45</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@153412 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Replace all instances of dg.exp file with lit.local.cfg, since all tests are run with LIT now and now Dejagnu. dg.exp is no longer needed.</title>
<updated>2012-02-16T06:28:33Z</updated>
<author>
<name>Eli Bendersky</name>
<email>eli.bendersky@intel.com</email>
</author>
<published>2012-02-16T06:28:33Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=0f0c411079cd21bb3a81a1b70bf8c67539a16c22'/>
<id>urn:sha1:0f0c411079cd21bb3a81a1b70bf8c67539a16c22</id>
<content type='text'>
Patch reviewed by Daniel Dunbar. It will be followed by additional cleanup patches.




git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@150664 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>The powers that be have decided that LLVM IR should now support 16-bit</title>
<updated>2011-12-17T00:04:22Z</updated>
<author>
<name>Dan Gohman</name>
<email>gohman@apple.com</email>
</author>
<published>2011-12-17T00:04:22Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=ce16339930a2b03e53b4e6399ef59c092a7f2cfa'/>
<id>urn:sha1:ce16339930a2b03e53b4e6399ef59c092a7f2cfa</id>
<content type='text'>
"half precision" floating-point with a first-class type.

This patch adds basic IR support (but not codegen support).


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@146786 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Manually upgrade the test suite to specify the flag to cttz and ctlz.</title>
<updated>2011-12-12T11:59:10Z</updated>
<author>
<name>Chandler Carruth</name>
<email>chandlerc@gmail.com</email>
</author>
<published>2011-12-12T11:59:10Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=ddbc274169ed4ee0e0ac32ed194b925a180202fe'/>
<id>urn:sha1:ddbc274169ed4ee0e0ac32ed194b925a180202fe</id>
<content type='text'>
I followed three heuristics for deciding whether to set 'true' or
'false':

- Everything target independent got 'true' as that is the expected
  common output of the GCC builtins.
- If the target arch only has one way of implementing this operation,
  set the flag in the way that exercises the most of codegen. For most
  architectures this is also the likely path from a GCC builtin, with
  'true' being set. It will (eventually) require lowering away that
  difference, and then lowering to the architecture's operation.
- Otherwise, set the flag differently dependending on which target
  operation should be tested.

Let me know if anyone has any issue with this pattern or would like
specific tests of another form. This should allow the x86 codegen to
just iteratively improve as I teach the backend how to differentiate
between the two forms, and everything else should remain exactly the
same.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@146370 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Add support for vectors of pointers.</title>
<updated>2011-12-05T06:29:09Z</updated>
<author>
<name>Nadav Rotem</name>
<email>nadav.rotem@intel.com</email>
</author>
<published>2011-12-05T06:29:09Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=1608769abeb1430dc34f31ffac0d9850f99ae36a'/>
<id>urn:sha1:1608769abeb1430dc34f31ffac0d9850f99ae36a</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@145801 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>remove autoupgrade support for old forms of llvm.prefetch and the old</title>
<updated>2011-11-27T07:42:04Z</updated>
<author>
<name>Chris Lattner</name>
<email>sabre@nondot.org</email>
</author>
<published>2011-11-27T07:42:04Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=3211c6e31b5715cbfa19bd17f2eaf5d3c1bec14a'/>
<id>urn:sha1:3211c6e31b5715cbfa19bd17f2eaf5d3c1bec14a</id>
<content type='text'>
trampoline forms.  Both of these were correct in LLVM 3.0, and we don't
need to support LLVM 2.9 and earlier in mainline.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@145174 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Update tests to the newest EH syntax.</title>
<updated>2011-08-25T01:30:18Z</updated>
<author>
<name>Bill Wendling</name>
<email>isanbard@gmail.com</email>
</author>
<published>2011-08-25T01:30:18Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=76cf779bb8b7297d4d80db0626cf5d458ddab6fc'/>
<id>urn:sha1:76cf779bb8b7297d4d80db0626cf5d458ddab6fc</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138541 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Add feature test for the new exception handling stuff.</title>
<updated>2011-08-25T01:19:13Z</updated>
<author>
<name>Bill Wendling</name>
<email>isanbard@gmail.com</email>
</author>
<published>2011-08-25T01:19:13Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=c5fb9d86b08a5cbf718e851219d22cce2aac37b3'/>
<id>urn:sha1:c5fb9d86b08a5cbf718e851219d22cce2aac37b3</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138539 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Revert r136253, r136263, r136269, r136313, r136325, r136326, r136329, r136338,</title>
<updated>2011-07-30T05:42:50Z</updated>
<author>
<name>Bill Wendling</name>
<email>isanbard@gmail.com</email>
</author>
<published>2011-07-30T05:42:50Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=10c6d12a9fd4dab411091f64db4db69670b88850'/>
<id>urn:sha1:10c6d12a9fd4dab411091f64db4db69670b88850</id>
<content type='text'>
r136339, r136341, r136369, r136387, r136392, r136396, r136429, r136430, r136444,
r136445, r136446, r136253 pending review.



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@136556 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Merge the contents from exception-handling-rewrite to the mainline.</title>
<updated>2011-07-27T20:18:04Z</updated>
<author>
<name>Bill Wendling</name>
<email>isanbard@gmail.com</email>
</author>
<published>2011-07-27T20:18:04Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=772fe17a6d07304ae2e6b3052bbb24ebb751f0f3'/>
<id>urn:sha1:772fe17a6d07304ae2e6b3052bbb24ebb751f0f3</id>
<content type='text'>
This adds the new instructions 'landingpad' and 'resume'.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@136253 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
</feed>
