summaryrefslogtreecommitdiff
path: root/powerpc
diff options
context:
space:
mode:
authorGravatar xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2011-07-28 15:09:30 +0000
committerGravatar xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2011-07-28 15:09:30 +0000
commit484bf49d18cb98817a95183827fea469b4367a40 (patch)
tree55e68104646b88146b0fbb6a669fbf760c5d61c9 /powerpc
parent4af1682d04244bab9f793e00eb24090153a36a0f (diff)
Updated Makefile and dependencies. Typo in powerpc/PrintAsm.ml.
git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@1689 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e
Diffstat (limited to 'powerpc')
-rw-r--r--powerpc/PrintAsm.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/powerpc/PrintAsm.ml b/powerpc/PrintAsm.ml
index 0567f3f..794441c 100644
--- a/powerpc/PrintAsm.ml
+++ b/powerpc/PrintAsm.ml
@@ -348,7 +348,7 @@ let print_builtin_memcpy_big oc sz al src dst =
fprintf oc " addi %a, %a, -4\n" ireg s ireg src;
fprintf oc " addi %a, %a, -4\n" ireg d ireg dst;
let lbl = new_label() in
- fprintf oc "%a: lwzu %a, 4(%a)\n" ireg GPR0 ireg s;
+ fprintf oc "%a: lwzu %a, 4(%a)\n" label lbl ireg GPR0 ireg s;
fprintf oc " stwu %a, 4(%a)\n" ireg GPR0 ireg d;
fprintf oc " bdnz %a\n" label lbl;
(* s and d lag behind by 4 bytes *)