Added X86-64 versioning

This commit is contained in:
Kelly Wilson
2009-02-03 12:33:21 -07:00
parent 9705b7e017
commit be38aa3e3a

View File

@@ -8,6 +8,15 @@ int foo()
mov EAX, fourty2;
ret;
}
else version (X86_64)
{
asm
{
naked;
movq RAX,fourty2;
ret;
}
}
else static assert(0, "todo");
}