view run/bug_cod2_4211_K.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 1e6afb94ce6d
children
line wrap: on
line source

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

// @author@	MicroWizard <MicroWizard_member@pathlink.com>
// @date@	2005-04-27
// @uri@	news:d4or18$1th1$1@digitaldaemon.com

module dstress.run.bug_cod2_4211_K;

cfloat[1] a;
cfloat[1] b;

cfloat[] concat() {
	return a~b;
}

int main(){
	a[]=0.5f+1.0fi;
	b[]=0.5f+3.0fi;

	cfloat[] arr=concat();

	assert(arr.length==2);
	assert(arr[0]==0.5f+1.0fi);
	assert(arr[1]==0.5f+3.0fi);
	
	return 0;
}