summaryrefslogtreecommitdiff
path: root/powerpc
diff options
context:
space:
mode:
authorGravatar xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2013-06-20 11:26:52 +0000
committerGravatar xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2013-06-20 11:26:52 +0000
commit794b0530851265d08e369ff2eaf791b47b48c829 (patch)
tree487a3cfc1b624291750af0ec879ec25b9142f933 /powerpc
parentc3ff165355e49114364bd45cd7c145ccb248ca8f (diff)
Missing case for EF_inline_asm.
git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@2284 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e
Diffstat (limited to 'powerpc')
-rw-r--r--powerpc/PrintAsm.ml2
1 files changed, 2 insertions, 0 deletions
diff --git a/powerpc/PrintAsm.ml b/powerpc/PrintAsm.ml
index b823268..ab8b4f3 100644
--- a/powerpc/PrintAsm.ml
+++ b/powerpc/PrintAsm.ml
@@ -963,6 +963,8 @@ let instr_size = function
if sz <= 64 then (sz / 4) * 2 + 6 else 11
| EF_annot_val(txt, targ) ->
0
+ | EF_inline_asm txt ->
+ 8 (* reasonable? default *)
| _ ->
assert false
end