diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2012-06-22 21:09:15 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2012-06-22 21:09:15 +0000 |
commit | 0193b74976719b8aea4cb8874ba36b75836a8d6e (patch) | |
tree | 1614cbd2ac9fd5e91d2bb1625222cb2aeee47c0e /lib/ashrdi3.c | |
parent | 0c87068785c951351814b8e7a7d0df29272397b6 (diff) | |
download | compiler-rt-0193b74976719b8aea4cb8874ba36b75836a8d6e.tar.gz |
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
Diffstat (limited to 'lib/ashrdi3.c')
-rw-r--r-- | lib/ashrdi3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ashrdi3.c b/lib/ashrdi3.c index 38ab71645..14c878bb7 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) |