[ARM] neon-testgen.ml typo
authorjules <jules@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 2 Nov 2015 12:43:14 +0000 (12:43 +0000)
committerjules <jules@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 2 Nov 2015 12:43:14 +0000 (12:43 +0000)
* config/arm/neon-testgen.ml (emit_epilogue): Remove extraneous
brackets and semicolon.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@229662 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/arm/neon-testgen.ml

index e293ad2..f999fd5 100644 (file)
@@ -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:
index 1a38951..a80c05d 100644 (file)
@@ -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.  *)