[ARM] neon-testgen.ml typo
* config/arm/neon-testgen.ml (emit_epilogue): Remove extraneous brackets and semicolon. From-SVN: r229662
This commit is contained in:
parent
35e2be9fc9
commit
6aadd15a41
2 changed files with 12 additions and 7 deletions
|
@ -1,3 +1,8 @@
|
|||
2015-11-02 Julian Brown <julian@codesourcery.com>
|
||||
|
||||
* config/arm/neon-testgen.ml (emit_epilogue): Remove extraneous
|
||||
brackets and semicolon.
|
||||
|
||||
2015-11-02 Alan Lawrence <alan.lawrence@arm.com>
|
||||
|
||||
Revert:
|
||||
|
|
|
@ -130,14 +130,14 @@ let emit_call chan const_valuator c_types name elt_ty =
|
|||
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. *)
|
||||
|
|
Loading…
Add table
Reference in a new issue