Remove extraneous semicolons outside of functions. This fixes a large
number of -pedantic warnings.

git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@159033 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/ashldi3.c b/lib/ashldi3.c
index 6c558fe..eb4698a 100644
--- a/lib/ashldi3.c
+++ b/lib/ashldi3.c
@@ -18,7 +18,7 @@
 
 /* Precondition:  0 <= b < bits_in_dword */
 
-ARM_EABI_FNALIAS(llsl, ashldi3);
+ARM_EABI_FNALIAS(llsl, ashldi3)
 
 COMPILER_RT_ABI di_int
 __ashldi3(di_int a, si_int b)