summaryrefslogtreecommitdiff
path: root/lib/fixxfti.c
diff options
context:
space:
mode:
authorEdward O'Callaghan <eocallaghan@auroraux.org>2009-08-05 04:02:56 +0000
committerEdward O'Callaghan <eocallaghan@auroraux.org>2009-08-05 04:02:56 +0000
commit2bf62728b8ce00e295c7bf0fb328427496cc85aa (patch)
tree4387ffcd063b8111e471f320fe1c1c437063c272 /lib/fixxfti.c
parent0e4ad9c55a8554a220af3dc6b0fc4b0a5d64c025 (diff)
downloadcompiler-rt-2bf62728b8ce00e295c7bf0fb328427496cc85aa.tar.gz
compiler-rt-2bf62728b8ce00e295c7bf0fb328427496cc85aa.tar.bz2
compiler-rt-2bf62728b8ce00e295c7bf0fb328427496cc85aa.tar.xz
Fixup C++ style comments are not allowed in ISO C90 to classic C style.
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@78152 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/fixxfti.c')
-rw-r--r--lib/fixxfti.c39
1 files changed, 21 insertions, 18 deletions
diff --git a/lib/fixxfti.c b/lib/fixxfti.c
index d9cb3eaf..84406bd1 100644
--- a/lib/fixxfti.c
+++ b/lib/fixxfti.c
@@ -1,28 +1,31 @@
-//===-- fixxfti.c - Implement __fixxfti -----------------------------------===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-//
-// This file implements __fixxfti for the compiler_rt library.
-//
-//===----------------------------------------------------------------------===//
+/* ===-- fixxfti.c - Implement __fixxfti -----------------------------------===
+ *
+ * The LLVM Compiler Infrastructure
+ *
+ * This file is distributed under the University of Illinois Open Source
+ * License. See LICENSE.TXT for details.
+ *
+ * ===----------------------------------------------------------------------===
+ *
+ * This file implements __fixxfti for the compiler_rt library.
+ *
+ * ===----------------------------------------------------------------------===
+ */
#if __x86_64
#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: long double is an intel 80 bit floating point type padded with 6 bytes
-// su_int is a 32 bit integral type
-// value in long double is representable in ti_int (no range checking performed)
+/* Assumption: long double is an intel 80 bit floating point type padded with 6 bytes
+ * su_int is a 32 bit integral type
+ * value in long double is representable in ti_int (no range checking performed)
+ */
-// gggg gggg gggg gggg gggg gggg gggg gggg | gggg gggg gggg gggg seee eeee eeee eeee |
-// 1mmm mmmm mmmm mmmm mmmm mmmm mmmm mmmm | mmmm mmmm mmmm mmmm mmmm mmmm mmmm mmmm
+/* gggg gggg gggg gggg gggg gggg gggg gggg | gggg gggg gggg gggg seee eeee eeee eeee |
+ * 1mmm mmmm mmmm mmmm mmmm mmmm mmmm mmmm | mmmm mmmm mmmm mmmm mmmm mmmm mmmm mmmm
+ */
ti_int
__fixxfti(long double a)