diff options
author | Edward O'Callaghan <eocallaghan@auroraux.org> | 2009-08-07 20:30:09 +0000 |
---|---|---|
committer | Edward O'Callaghan <eocallaghan@auroraux.org> | 2009-08-07 20:30:09 +0000 |
commit | 5583632adfc69f3fc056cacdeeb5192a1acba042 (patch) | |
tree | 9ab45422927f7142d2600dccdd4568a517d08a77 /compiler-rt/lib/muldc3.c | |
parent | 40134e71bee0d7a233925b8ed67954ccc5ede6cf (diff) | |
download | bcm5719-llvm-5583632adfc69f3fc056cacdeeb5192a1acba042.tar.gz bcm5719-llvm-5583632adfc69f3fc056cacdeeb5192a1acba042.zip |
Code style and Readability fixes. Credit to Craig van Vliet.
llvm-svn: 78403
Diffstat (limited to 'compiler-rt/lib/muldc3.c')
-rw-r--r-- | compiler-rt/lib/muldc3.c | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/compiler-rt/lib/muldc3.c b/compiler-rt/lib/muldc3.c index b945e8e3827..c048d84faa1 100644 --- a/compiler-rt/lib/muldc3.c +++ b/compiler-rt/lib/muldc3.c @@ -1,21 +1,22 @@ -//===-- muldc3.c - Implement __muldc3 -------------------------------------===// -// -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// -// -// This file implements __muldc3 for the compiler_rt library. -// -//===----------------------------------------------------------------------===// +/* ===-- muldc3.c - Implement __muldc3 -------------------------------------=== + * + * The LLVM Compiler Infrastructure + * + * This file is distributed under the University of Illinois Open Source + * License. See LICENSE.TXT for details. + * + * ===----------------------------------------------------------------------=== + * + * This file implements __muldc3 for the compiler_rt library. + * + * ===----------------------------------------------------------------------=== + */ #include "int_lib.h" #include <math.h> #include <complex.h> -// Returns: the product of a + ib and c + id +/* Returns: the product of a + ib and c + id */ double _Complex __muldc3(double __a, double __b, double __c, double __d) |