[ARM] neon-testgen.ml typo
authorJulian Brown <julian@codesourcery.com>
Mon, 2 Nov 2015 12:43:14 +0000 (12:43 +0000)
committerJulian Brown <jules@gcc.gnu.org>
Mon, 2 Nov 2015 12:43:14 +0000 (12:43 +0000)
* config/arm/neon-testgen.ml (emit_epilogue): Remove extraneous
brackets and semicolon.

From-SVN: r229662

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

index e293ad22a1088ae398310374e7f2580f69324751..f999fd51431b5af1b7061bd0ca5562e19c6bac7c 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 1a389511855270ef84618c1432cd8935befb5050..a80c05dfe09dbecfa2e12498be979662d928e60a 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.  *)