diff options
Diffstat (limited to 'asmcomp/power/proc.ml')
-rw-r--r-- | asmcomp/power/proc.ml | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/asmcomp/power/proc.ml b/asmcomp/power/proc.ml index f0dabff13..4c1d96dfd 100644 --- a/asmcomp/power/proc.ml +++ b/asmcomp/power/proc.ml @@ -189,7 +189,7 @@ let poweropen_external_conventions first_int last_int let loc_external_arguments = match Config.system with - "aix" | "rhapsody" -> poweropen_external_conventions 0 7 100 112 + | "rhapsody" -> poweropen_external_conventions 0 7 100 112 | "elf" | "bsd" -> calling_conventions 0 7 100 107 outgoing 8 | _ -> assert false @@ -239,9 +239,6 @@ let assemble_file infile outfile = let infile = Filename.quote infile and outfile = Filename.quote outfile in match Config.system with - "aix" -> - let proc = if powerpc then "ppc" else "pwr" in - Ccomp.command ("as -u -m " ^ proc ^ " -o " ^ outfile ^ " " ^ infile) | "elf" -> Ccomp.command ("as -u -m ppc -o " ^ outfile ^ " " ^ infile) | "rhapsody" | "bsd" -> |