<feed xmlns='http://www.w3.org/2005/Atom'>
<title>llvm/test/Transforms/SimplifyCFG, branch release_20</title>
<subtitle>http://llvm.org</subtitle>
<id>https://git.amat.us/llvm/atom/test/Transforms/SimplifyCFG?h=release_20</id>
<link rel='self' href='https://git.amat.us/llvm/atom/test/Transforms/SimplifyCFG?h=release_20'/>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/'/>
<updated>2007-04-22T05:46:44Z</updated>
<entry>
<title>For PR1146:</title>
<updated>2007-04-22T05:46:44Z</updated>
<author>
<name>Reid Spencer</name>
<email>rspencer@reidspencer.com</email>
</author>
<published>2007-04-22T05:46:44Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=4f859aa532dbf061736f9c23e0d0882b5cdfe566'/>
<id>urn:sha1:4f859aa532dbf061736f9c23e0d0882b5cdfe566</id>
<content type='text'>
Make ParamAttrsList objects unique. You can no longer directly create or
destroy them but instead must go through the ParamAttrsList::get()
interface.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36327 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>For PR1319:</title>
<updated>2007-04-15T09:21:47Z</updated>
<author>
<name>Reid Spencer</name>
<email>rspencer@reidspencer.com</email>
</author>
<published>2007-04-15T09:21:47Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=9aafdcf20dee238d0e7f14d6723f5a401431fe91'/>
<id>urn:sha1:9aafdcf20dee238d0e7f14d6723f5a401431fe91</id>
<content type='text'>
Upgrade to use new Tcl exec based test harness. This exposes 3 bugs that
were previously not being reported:
test/Transforms/GlobalDCE/2002-08-17-FunctionDGE.ll
test/Transforms/GlobalOpt/memset.ll
test/Transforms/IndVarsSimplify/exit_value_tests.llx


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36065 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Make the llvm-runtest function much more amenable by eliminating all the</title>
<updated>2007-04-11T19:56:59Z</updated>
<author>
<name>Reid Spencer</name>
<email>rspencer@reidspencer.com</email>
</author>
<published>2007-04-11T19:56:59Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=0f5aed564871ecd3f55a54db82ed90e15b0a1233'/>
<id>urn:sha1:0f5aed564871ecd3f55a54db82ed90e15b0a1233</id>
<content type='text'>
global variables that needed to be passed in. This makes it possible to
add new global variables with only a couple changes (Makefile and llvm-dg.exp)
instead of touching every single dg.exp file.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35918 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Can't grep for bool any more.</title>
<updated>2007-01-13T04:36:22Z</updated>
<author>
<name>Reid Spencer</name>
<email>rspencer@reidspencer.com</email>
</author>
<published>2007-01-13T04:36:22Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=f2f882015e4c46cb7f301227dee6eb85ddd3bf2a'/>
<id>urn:sha1:f2f882015e4c46cb7f301227dee6eb85ddd3bf2a</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33178 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Remove a manual renaming of a variable that was introduced before</title>
<updated>2007-01-04T16:46:46Z</updated>
<author>
<name>Reid Spencer</name>
<email>rspencer@reidspencer.com</email>
</author>
<published>2007-01-04T16:46:46Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=6a21d848b62976482f1fcbbec5ab3edc88115d47'/>
<id>urn:sha1:6a21d848b62976482f1fcbbec5ab3edc88115d47</id>
<content type='text'>
llvm-upgrade could properly handle collapsed type planes.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32875 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>For PR950:</title>
<updated>2006-12-31T06:02:00Z</updated>
<author>
<name>Reid Spencer</name>
<email>rspencer@reidspencer.com</email>
</author>
<published>2006-12-31T06:02:00Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=eacb7020ec7b0a6a0078f1be7bfd77bf6fe1ff06'/>
<id>urn:sha1:eacb7020ec7b0a6a0078f1be7bfd77bf6fe1ff06</id>
<content type='text'>
Update the test suite to accommodate the change from signed integer types
to signless integer types. The changes were of only a few kinds:

1. Make sure llvm-upgrade is run on the source which does the bulk of the
   changes automatically.

2. Change things like "grep 'int'" to "grep 'i32'"

3. In several tests bitcasting caused the same name to be reused in the
   same type plane. These had to be manually fixed. The fix was (generally)
   to leave the bitcast and provide the instruction with a new name. This
   should not affect the semantics of the test. In a few cases, the
   bitcasts were known to be superfluous and irrelevant to the test case
   so they were removed.

4. One test case uses a bytecode file which needed to be updated to the
   latest bytecode format.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32789 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Update tests that need to be run through llvm-upgrade. This is necessary</title>
<updated>2006-12-29T20:01:32Z</updated>
<author>
<name>Reid Spencer</name>
<email>rspencer@reidspencer.com</email>
</author>
<published>2006-12-29T20:01:32Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=73e70822ae9dd03f092b1ae56c5fed6d39b7af3c'/>
<id>urn:sha1:73e70822ae9dd03f092b1ae56c5fed6d39b7af3c</id>
<content type='text'>
for upcoming changes to the llvm assembly grammar.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32768 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>For PR950:</title>
<updated>2006-12-23T06:05:41Z</updated>
<author>
<name>Reid Spencer</name>
<email>rspencer@reidspencer.com</email>
</author>
<published>2006-12-23T06:05:41Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=e4d87aa2de6e52952dca73716386db09aad5a8fd'/>
<id>urn:sha1:e4d87aa2de6e52952dca73716386db09aad5a8fd</id>
<content type='text'>
This patch removes the SetCC instructions and replaces them with the ICmp
and FCmp instructions. The SetCondInst instruction has been removed and
been replaced with ICmpInst and FCmpInst.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32751 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>fix buggy testcase</title>
<updated>2006-12-16T02:29:22Z</updated>
<author>
<name>Chris Lattner</name>
<email>sabre@nondot.org</email>
</author>
<published>2006-12-16T02:29:22Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=c80dfba667ede2b8831d34dc59fb0b775fae705f'/>
<id>urn:sha1:c80dfba667ede2b8831d34dc59fb0b775fae705f</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32626 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Use the llvm-upgrade program to upgrade llvm assembly.</title>
<updated>2006-12-02T04:23:10Z</updated>
<author>
<name>Reid Spencer</name>
<email>rspencer@reidspencer.com</email>
</author>
<published>2006-12-02T04:23:10Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=69ccadd7535a83b348595cf603126e6a68b2883b'/>
<id>urn:sha1:69ccadd7535a83b348595cf603126e6a68b2883b</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32115 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
</feed>
