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 | 321916a76bd54ce781dbe995cf6ace220d97fc90 (patch) | |
tree | 091774cd1882dc4cf825a2394f17fab9a63a2529 /compiler-rt/lib/truncdfsf2.c | |
parent | e80a289fdc35571e67ff181c3250910cfb98ecb9 (diff) | |
download | bcm5719-llvm-321916a76bd54ce781dbe995cf6ace220d97fc90.tar.gz bcm5719-llvm-321916a76bd54ce781dbe995cf6ace220d97fc90.zip |
Remove extraneous semicolons outside of functions. This fixes a large
number of -pedantic warnings.
llvm-svn: 159033
Diffstat (limited to 'compiler-rt/lib/truncdfsf2.c')
-rw-r--r-- | compiler-rt/lib/truncdfsf2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/truncdfsf2.c b/compiler-rt/lib/truncdfsf2.c index f57af7e736d..61c909a22d8 100644 --- a/compiler-rt/lib/truncdfsf2.c +++ b/compiler-rt/lib/truncdfsf2.c @@ -64,7 +64,7 @@ static inline dst_t dstFromRep(dst_rep_t x) { // End helper routines. Conversion implementation follows. -ARM_EABI_FNALIAS(d2f, truncdfsf2); +ARM_EABI_FNALIAS(d2f, truncdfsf2) COMPILER_RT_ABI dst_t __truncdfsf2(src_t a) { |