<feed xmlns='http://www.w3.org/2005/Atom'>
<title>llvm/test/Other, branch testing</title>
<subtitle>http://llvm.org</subtitle>
<id>https://git.amat.us/llvm/atom/test/Other?h=testing</id>
<link rel='self' href='https://git.amat.us/llvm/atom/test/Other?h=testing'/>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/'/>
<updated>2013-03-04T22:40:44Z</updated>
<entry>
<title>Check isDiscardableIfUnused, rather than hasLocalLinkage, when bumping</title>
<updated>2013-03-04T22:40:44Z</updated>
<author>
<name>Lang Hames</name>
<email>lhames@gmail.com</email>
</author>
<published>2013-03-04T22:40:44Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=880e8c0ad41345f353b819c51092baa8f05e1950'/>
<id>urn:sha1:880e8c0ad41345f353b819c51092baa8f05e1950</id>
<content type='text'>
GlobalValue linkage up to ExternalLinkage in the ExtractGV pass. This
prevents linkonce and linkonce_odr symbols from being DCE'd.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@176459 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>IR: Don't constant fold GEP bitcasts between different address spaces</title>
<updated>2013-02-27T02:26:42Z</updated>
<author>
<name>Meador Inge</name>
<email>meadori@codesourcery.com</email>
</author>
<published>2013-02-27T02:26:42Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=8df7c39976890d94198d835e032848a374fec158'/>
<id>urn:sha1:8df7c39976890d94198d835e032848a374fec158</id>
<content type='text'>
PR15262 reported a bug where the following instruction:

  i8 getelementptr inbounds i8* bitcast ([4 x i8] addrspace(12)* @buf to i8*),
                                i32 2

was getting folded into:

  addrspace(12)* getelementptr inbounds ([4 x i8] addrspace(12)* @buf, i32 0,
                                        i32 2)

This caused instcombine to crash because the original instruction and
the folded instruction have different types.  The issue was fixed by
disallowing bitcasts between different address spaces to be folded away.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@176156 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Modify the LLVM assembly output so that it uses references to represent function attributes.</title>
<updated>2013-02-20T07:21:42Z</updated>
<author>
<name>Bill Wendling</name>
<email>isanbard@gmail.com</email>
</author>
<published>2013-02-20T07:21:42Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=7ab6c76ad1cbf36284ca5b6bd5ee33c625fe3e60'/>
<id>urn:sha1:7ab6c76ad1cbf36284ca5b6bd5ee33c625fe3e60</id>
<content type='text'>
This makes the LLVM assembly look better. E.g.:

     define void @foo() #0 { ret void }
     attributes #0 = { nounwind noinline ssp }


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@175605 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>XFAIL close-stderr on win32</title>
<updated>2013-01-25T22:12:54Z</updated>
<author>
<name>Reid Kleckner</name>
<email>reid@kleckner.net</email>
</author>
<published>2013-01-25T22:12:54Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=1eb5aea5047228e0c0a5c5a01809124228387332'/>
<id>urn:sha1:1eb5aea5047228e0c0a5c5a01809124228387332</id>
<content type='text'>
The test runner does not rewrite instances of /dev/null inside the
quoted sh command.  /dev/null does not exist, so opt will fail to open
it, and return a non-zero exit code.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@173509 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>llvm/test/Other/close-stderr.ll: Mark this as XFAIL:valgrind. We got 127 instead of 1 here.</title>
<updated>2013-01-20T03:35:39Z</updated>
<author>
<name>NAKAMURA Takumi</name>
<email>geek4civic@gmail.com</email>
</author>
<published>2013-01-20T03:35:39Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=fe311dba3ecb5a6b9451bbd56181a3f3b5fb2319'/>
<id>urn:sha1:fe311dba3ecb5a6b9451bbd56181a3f3b5fb2319</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@172956 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Using "not grep" is brittle as the test passes if llvm-as fails.</title>
<updated>2012-11-21T14:17:23Z</updated>
<author>
<name>Rafael Espindola</name>
<email>rafael.espindola@gmail.com</email>
</author>
<published>2012-11-21T14:17:23Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=811a8376096f710c3b49fcc4f0d69150e22207b8'/>
<id>urn:sha1:811a8376096f710c3b49fcc4f0d69150e22207b8</id>
<content type='text'>
Fix the testcase to be valid IL and uses FileCheck.
Thanks to NAKAMURA Takumi for noticing it.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168427 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Revert r167836, "llvm/test/Other/close-stderr.ll: Mark it as XFAIL:mingw32 for now.", corresponding to r167849.</title>
<updated>2012-11-13T21:57:42Z</updated>
<author>
<name>NAKAMURA Takumi</name>
<email>geek4civic@gmail.com</email>
</author>
<published>2012-11-13T21:57:42Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=2aac6161e41c4b415d3922fb4d6dcc5da1fe8d68'/>
<id>urn:sha1:2aac6161e41c4b415d3922fb4d6dcc5da1fe8d68</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@167876 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Revert 167755/167760. We don't want to emit crash diagnostics on command-line syntax errors.</title>
<updated>2012-11-13T16:42:19Z</updated>
<author>
<name>Chad Rosier</name>
<email>mcrosier@apple.com</email>
</author>
<published>2012-11-13T16:42:19Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=fc298c76c7e5f569ab4310b237784609458c2ea8'/>
<id>urn:sha1:fc298c76c7e5f569ab4310b237784609458c2ea8</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@167849 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>llvm/test/Other/close-stderr.ll: Mark it as XFAIL:mingw32 for now.</title>
<updated>2012-11-13T15:03:33Z</updated>
<author>
<name>NAKAMURA Takumi</name>
<email>geek4civic@gmail.com</email>
</author>
<published>2012-11-13T15:03:33Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=90c61c4a7497d24e9e29fc64e311e45b0419e13d'/>
<id>urn:sha1:90c61c4a7497d24e9e29fc64e311e45b0419e13d</id>
<content type='text'>
On MSYS, 70 is not seen, but 1.

r127726 should be reworked. Candidate options are;

  1) Use not exit(70), but _exit(70), in report_fatal_error().
  2) Return with _exit(70) in ~raw_ostream().

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@167836 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Update test case for r167754/r167755.</title>
<updated>2012-11-12T21:51:08Z</updated>
<author>
<name>Chad Rosier</name>
<email>mcrosier@apple.com</email>
</author>
<published>2012-11-12T21:51:08Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=fa77cced0b7727f0d3c9c49cb2f3cbdc8ae52c3e'/>
<id>urn:sha1:fa77cced0b7727f0d3c9c49cb2f3cbdc8ae52c3e</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@167760 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
</feed>
