1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 04:02:41 +01:00
llvm-mirror/test/CodeGen
Chris Lattner e93a775a4d Fix a significant code quality regression I introduced on PPC64 quite
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.

llvm-svn: 44701
2007-12-08 07:04:58 +00:00
..
Alpha xfail a test 2007-11-28 05:37:13 +00:00
ARM Turning simple splitting on. Start testing new coalescer heuristics as new llcbeta. 2007-12-06 08:54:31 +00:00
CBackend Change all floating constants that are not exactly 2007-09-05 17:50:36 +00:00
Generic upgrade this test 2007-11-28 18:22:12 +00:00
IA64 Convert .cvsignore files 2007-06-29 16:35:07 +00:00
PowerPC Fix a significant code quality regression I introduced on PPC64 quite 2007-12-08 07:04:58 +00:00
SPARC Convert tests using "| wc -l | grep ..." to use the count script. 2007-08-15 13:36:28 +00:00
X86 Much improved v8i16 shuffles. (Step 1). 2007-12-07 08:07:39 +00:00