Index: gcc/config/arm/neon-testgen.ml =================================================================== --- gcc/config/arm/neon-testgen.ml (revision 229410) +++ gcc/config/arm/neon-testgen.ml (working copy) @@ -130,14 +130,14 @@ let emit_call chan const_valuator c_type let emit_epilogue chan features regexps = let no_op = List.exists (fun feature -> feature = No_op) features in Printf.fprintf chan "}\n\n"; - (if not no_op then - List.iter (fun regexp -> - Printf.fprintf chan - "/* { dg-final { scan-assembler \"%s\" } } */\n" regexp) + if not no_op then + List.iter (fun regexp -> + Printf.fprintf chan + "/* { dg-final { scan-assembler \"%s\" } } */\n" regexp) regexps - else - () - ); + else + () + (* Check a list of C types to determine which ones are pointers and which ones are const. *)