[Issue 1194] New: fcmov* emmits incorrect code
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Fri Apr 27 10:58:48 PDT 2007
http://d.puremagic.com/issues/show_bug.cgi?id=1194
Summary: fcmov* emmits incorrect code
Product: D
Version: 1.013
Platform: PC
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P3
Component: DMD
AssignedTo: bugzilla at digitalmars.com
ReportedBy: thomas-dloop at kuehne.cn
# void test(){
# asm{
# //not accepted
# fcmovb ST, ST(1);
#
# // results in: fcmovb st, st(0)
# fcmovb ST(0), ST(1);
#
# // illegal but accepted and results in: fcmovb st, st(3)
# fcmovb ST(3), ST(4);
# }
# }
--
More information about the Digitalmars-d-bugs
mailing list