summaryrefslogtreecommitdiff
path: root/lib/powidf2.c
diff options
context:
space:
mode:
authorEdward O'Callaghan <eocallaghan@auroraux.org>2009-08-05 19:57:20 +0000
committerEdward O'Callaghan <eocallaghan@auroraux.org>2009-08-05 19:57:20 +0000
commit0898ee9197a0049e479a12f4c5b3c65e3deaf03b (patch)
tree187b76db955e603a3b26db7383f2d815f68f80ce /lib/powidf2.c
parent1fcb40b79d8fbfcc9acb0966d5f9bba09431f832 (diff)
Refactor test suit endianness pre-processor code. More style and readability fixes, start labling endif's
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@78234 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/powidf2.c')
-rw-r--r--lib/powidf2.c27
1 files changed, 14 insertions, 13 deletions
diff --git a/lib/powidf2.c b/lib/powidf2.c
index 3237e266d..37972b68b 100644
--- a/lib/powidf2.c
+++ b/lib/powidf2.c
@@ -1,19 +1,20 @@
-//===-- powidf2.cpp - Implement __powidf2 ---------------------------------===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-//
-// This file implements __powidf2 for the compiler_rt library.
-//
-//===----------------------------------------------------------------------===//
+/* ===-- powidf2.cpp - Implement __powidf2 ---------------------------------===
+ *
+ * The LLVM Compiler Infrastructure
+ *
+ * This file is distributed under the University of Illinois Open Source
+ * License. See LICENSE.TXT for details.
+ *
+ * ===----------------------------------------------------------------------===
+ *
+ * This file implements __powidf2 for the compiler_rt library.
+ *
+ * ===----------------------------------------------------------------------===
+ */
#include "int_lib.h"
-// Returns: a ^ b
+/* Returns: a ^ b */
double
__powidf2(double a, si_int b)