Commit 6aadd15a by Julian Brown Committed by Julian Brown

[ARM] neon-testgen.ml typo

	* config/arm/neon-testgen.ml (emit_epilogue): Remove extraneous
	brackets and semicolon.

From-SVN: r229662
parent 35e2be9f
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. *)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment