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/ashrdi3.c b/lib/ashrdi3.c
index 38ab716..14c878b 100644
--- a/lib/ashrdi3.c
+++ b/lib/ashrdi3.c
@@ -18,7 +18,7 @@
 
 /* Precondition:  0 <= b < bits_in_dword */
 
-ARM_EABI_FNALIAS(lasr, ashrdi3);
+ARM_EABI_FNALIAS(lasr, ashrdi3)
 
 COMPILER_RT_ABI di_int
 __ashrdi3(di_int a, si_int b)