<feed xmlns='http://www.w3.org/2005/Atom'>
<title>llvm/test/CodeGen/PowerPC, branch release_22</title>
<subtitle>http://llvm.org</subtitle>
<id>https://git.amat.us/llvm/atom/test/CodeGen/PowerPC?h=release_22</id>
<link rel='self' href='https://git.amat.us/llvm/atom/test/CodeGen/PowerPC?h=release_22'/>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/'/>
<updated>2008-01-16T18:03:52Z</updated>
<entry>
<title>add testcase for regression</title>
<updated>2008-01-16T18:03:52Z</updated>
<author>
<name>Chris Lattner</name>
<email>sabre@nondot.org</email>
</author>
<published>2008-01-16T18:03:52Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=b8b92216f1552dce7533816d21fd3a6de4b03176'/>
<id>urn:sha1:b8b92216f1552dce7533816d21fd3a6de4b03176</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46073 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>remove darwin/i386 t-t</title>
<updated>2008-01-08T06:52:51Z</updated>
<author>
<name>Chris Lattner</name>
<email>sabre@nondot.org</email>
</author>
<published>2008-01-08T06:52:51Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=a4040e9a9f313912469be454c0fde7ce50c64311'/>
<id>urn:sha1:a4040e9a9f313912469be454c0fde7ce50c64311</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45743 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Finally implement correct ordered comparisons for PPC, even though</title>
<updated>2008-01-08T06:46:30Z</updated>
<author>
<name>Chris Lattner</name>
<email>sabre@nondot.org</email>
</author>
<published>2008-01-08T06:46:30Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=fe39edde27147d4645aff715d5a7630fa07fa885'/>
<id>urn:sha1:fe39edde27147d4645aff715d5a7630fa07fa885</id>
<content type='text'>
the code generated is not wonderful.  This turns a miscompilation into
a code quality bug (noted in the ppc readme).  This fixes PR642, which
is over 2 years old (!).  Nate, please review this.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45742 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Fix a significant code quality regression I introduced on PPC64 quite </title>
<updated>2007-12-08T07:04:58Z</updated>
<author>
<name>Chris Lattner</name>
<email>sabre@nondot.org</email>
</author>
<published>2007-12-08T07:04:58Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=d96428597b9a4bcf3c0702bbb497796b922c2e91'/>
<id>urn:sha1:d96428597b9a4bcf3c0702bbb497796b922c2e91</id>
<content type='text'>
a while ago.  We now produce:

_foo:
	mflr r0
	std r0, 16(r1)
	ld r2, 16(r1)
	std r2, 0(r3)
	ld r0, 16(r1)
	mtlr r0
	blr 

instead of:

_foo:
	mflr r0
	std r0, 16(r1)
	lis r0, 0
	ori r0, r0, 16
	ldx r2, r1, r0
	std r2, 0(r3)
	ld r0, 16(r1)
	mtlr r0
	blr 

for:

void foo(void **X) {
  *X = __builtin_return_address(0);
}

on ppc64.



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44701 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>implement __builtin_return_addr(0) on ppc.</title>
<updated>2007-12-08T06:59:59Z</updated>
<author>
<name>Chris Lattner</name>
<email>sabre@nondot.org</email>
</author>
<published>2007-12-08T06:59:59Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=3fc027df4fca0355717515abb4d6e3753e6dee2a'/>
<id>urn:sha1:3fc027df4fca0355717515abb4d6e3753e6dee2a</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44700 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Fix a crash on invalid code due to memcpy lowering.</title>
<updated>2007-11-27T22:14:42Z</updated>
<author>
<name>Chris Lattner</name>
<email>sabre@nondot.org</email>
</author>
<published>2007-11-27T22:14:42Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=789db09cde5f0cb2a0a5fc175c1141c760a3e807'/>
<id>urn:sha1:789db09cde5f0cb2a0a5fc175c1141c760a3e807</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44378 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Testcase for PR1811</title>
<updated>2007-11-19T21:43:22Z</updated>
<author>
<name>Chris Lattner</name>
<email>sabre@nondot.org</email>
</author>
<published>2007-11-19T21:43:22Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=cec5f3003f8f12fb7c02e292c9195054c4cf0012'/>
<id>urn:sha1:cec5f3003f8f12fb7c02e292c9195054c4cf0012</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44244 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Testcase from PR 1508 (although its's somewhat</title>
<updated>2007-11-16T23:16:35Z</updated>
<author>
<name>Dale Johannesen</name>
<email>dalej@apple.com</email>
</author>
<published>2007-11-16T23:16:35Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=d81ae56fa225d8d9670a8eab9a7051cf538ccaa6'/>
<id>urn:sha1:d81ae56fa225d8d9670a8eab9a7051cf538ccaa6</id>
<content type='text'>
orthogonal to the main problem there)



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44194 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Skip over deleted val#'s.</title>
<updated>2007-11-05T06:46:45Z</updated>
<author>
<name>Evan Cheng</name>
<email>evan.cheng@apple.com</email>
</author>
<published>2007-11-05T06:46:45Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=5031fd2d32a8ce5e82059928396e0c659e2a7c27'/>
<id>urn:sha1:5031fd2d32a8ce5e82059928396e0c659e2a7c27</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43700 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>On second thought. Remove this as it should never be generated in the first</title>
<updated>2007-10-26T20:34:37Z</updated>
<author>
<name>Bill Wendling</name>
<email>isanbard@gmail.com</email>
</author>
<published>2007-10-26T20:34:37Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=61297f960ed2291c2475d04241b5e3e01c367fc8'/>
<id>urn:sha1:61297f960ed2291c2475d04241b5e3e01c367fc8</id>
<content type='text'>
place.


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