view nocompile/a/asm_02_C.d @ 1561:24fcb78d93f6

r8714@birke: tk | 2007-09-29 23:27:16 +0200 [Issue 1539] X86 inline assembler fails to recognize when the branch address outside range <grahamc001uk@yahoo.co.uk> 2007-09-28 http://d.puremagic.com/issues/show_bug.cgi?id=1539
author thomask
date Sun, 30 Sep 2007 09:43:24 +0000
parents a44492981ddb
children
line wrap: on
line source

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

// @author@	Don Clugston <clugdbug@yahoo.com.au>
// @date@	2007-03-14
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=1061
// @desc@	[Issue 1061] "asm inc [;" segfaults compiler.

// __DSTRESS_ELINE__ 23

module dstress.nocompile.a.asm_02_C;

version(D_InlineASM_X86){
	version = test;
}else version(D_InlineAsm_X86_64){
	version = test;
}

version(test){
	void foo() {
		asm {
			inc (;
		}
	}
}else{
	static assert(0, "DSTRESS{XFAIL}: no X86 inline ASM support");
}