view run/b/bug_stor_layout_382_A.d @ 1630:d0efa3ae5522 default tip

run/mini/naked_asm5: New x86_64 ABI passes the arguments in reverse order.
author David Nadlinger <code@klickverbot.at>
date Sat, 23 Apr 2011 22:57:32 +0200
parents b3d4452d48ac
children
line wrap: on
line source

// $HeadURL$
// $Date$
// $Author$

// @author@	Thomas Kuehne <thomas-dloop@kuehne.cn>
// @uri@	news:teh273-cpp.ln1@birke.kuehne.cn

module dstress.run.b.bug_stor_layout_382_A;

struct Dog{
	int length;
	void* ptr;
}

struct Cat{
	Cat* left;
	Cat* right;
}

void foo(Cat*[] c, ...){
}

Dog bar(Cat*[] c, uint k, uint v){
	Dog d;

	d.ptr = (new byte[d.length]).ptr;
	return d;
}

Dog bug(){
	Dog d;
	return d;
}

void dummy(byte[] res){
}

int main(){
	return 0;
}