diff tests/mini/naked_asm5.d @ 1448:e92e14690a4f

change mingw32 versioning to version(Windows)
author Kelly Wilson <wilsonk cpsc.ucalgary.ca>
date Sun, 31 May 2009 11:20:26 -0600
parents a400b1dd657f
children
line wrap: on
line diff
--- a/tests/mini/naked_asm5.d	Sun May 31 11:01:02 2009 -0600
+++ b/tests/mini/naked_asm5.d	Sun May 31 11:20:26 2009 -0600
@@ -3,7 +3,7 @@
     version(X86)
     {
     const OP = (op == '+') ? "add" : "sub";
-    version (mingw32)
+    version (Windows)
     {
     	asm { naked; }
     	mixin("asm{push EBP;mov EBP,ESP;sub ESP,8;mov ECX,[EBP+8];"~OP~" EAX, ECX;add ESP,8;pop EBP;}");