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/fixsfdi.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/fixsfdi.c')
-rw-r--r-- | compiler-rt/lib/fixsfdi.c | 36 |
1 files changed, 19 insertions, 17 deletions
diff --git a/compiler-rt/lib/fixsfdi.c b/compiler-rt/lib/fixsfdi.c index 5458f027688..08f1524e152 100644 --- a/compiler-rt/lib/fixsfdi.c +++ b/compiler-rt/lib/fixsfdi.c @@ -1,25 +1,27 @@ -//===-- fixsfdi.c - Implement __fixsfdi -----------------------------------===// -// -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// -// -// This file implements __fixsfdi for the compiler_rt library. -// -//===----------------------------------------------------------------------===// +/* ===-- fixsfdi.c - Implement __fixsfdi -----------------------------------=== + * + * The LLVM Compiler Infrastructure + * + * This file is distributed under the University of Illinois Open Source + * License. See LICENSE.TXT for details. + * + * ===----------------------------------------------------------------------=== + * + * This file implements __fixsfdi for the compiler_rt library. + * + * ===----------------------------------------------------------------------=== + */ #include "int_lib.h" -// Returns: convert a to a signed long long, rounding toward zero. +/* Returns: convert a to a signed long long, rounding toward zero. */ -// Assumption: float is a IEEE 32 bit floating point type -// su_int is a 32 bit integral type -// value in float is representable in di_int (no range checking performed) +/* Assumption: float is a IEEE 32 bit floating point type + * su_int is a 32 bit integral type + * value in float is representable in di_int (no range checking performed) + */ -// seee eeee emmm mmmm mmmm mmmm mmmm mmmm +/* seee eeee emmm mmmm mmmm mmmm mmmm mmmm */ di_int __fixsfdi(float a) |