Delete useless trailing semicolons.

llvm-svn: 92740
diff --git a/llvm/test/CodeGen/CellSPU/dp_farith.ll b/llvm/test/CodeGen/CellSPU/dp_farith.ll
index b0a372b..66bff3eb 100644
--- a/llvm/test/CodeGen/CellSPU/dp_farith.ll
+++ b/llvm/test/CodeGen/CellSPU/dp_farith.ll
@@ -83,7 +83,7 @@
 ; FNMS: - (a * b - c) => c - (a * b)
 define <2 x double> @d_fnms_vec_1(<2 x double> %arg1, <2 x double> %arg2, <2 x double> %arg3) {
         %A = fmul <2 x double> %arg1,  %arg2
-        %B = fsub <2 x double> %arg3, %A ;
+        %B = fsub <2 x double> %arg3, %A
         ret <2 x double> %B
 }