summaryrefslogtreecommitdiff
path: root/ia32
diff options
context:
space:
mode:
authorGravatar xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2013-11-27 08:53:19 +0000
committerGravatar xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2013-11-27 08:53:19 +0000
commit6ee04b19dc6106932e7498e34c1b4938a94bf074 (patch)
treeab13736cea1d59384199e457a3329f12c0524f84 /ia32
parent726c815f2070e9ae40bdf6df1d4e63b4a60b6e09 (diff)
Rename "-fno-sse" into "-fno-fpu" and honor it on PowerPC as well.
git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@2374 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e
Diffstat (limited to 'ia32')
-rw-r--r--ia32/PrintAsm.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/ia32/PrintAsm.ml b/ia32/PrintAsm.ml
index 5fb2568..4480f91 100644
--- a/ia32/PrintAsm.ml
+++ b/ia32/PrintAsm.ml
@@ -292,7 +292,7 @@ let print_annot_val oc txt args res =
let print_builtin_memcpy_small oc sz al src dst =
assert (src = EDX && dst = EAX);
let rec copy ofs sz =
- if sz >= 8 && !Clflags.option_fsse then begin
+ if sz >= 8 && !Clflags.option_ffpu then begin
fprintf oc " movq %d(%a), %a\n" ofs ireg src freg XMM7;
fprintf oc " movq %a, %d(%a)\n" freg XMM7 ofs ireg dst;
copy (ofs + 8) (sz - 8)