summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Canon <scanon@apple.com>2010-07-03 00:56:03 +0000
committerStephen Canon <scanon@apple.com>2010-07-03 00:56:03 +0000
commitb6d4e2e3a87eb3c9a6dec0ad21d4c1dec545c137 (patch)
treec85023f7022622149168a816845e2be4f46d696d
parent455c2633311fe29b036a53eb466f6d65af97de4f (diff)
downloadcompiler-rt-b6d4e2e3a87eb3c9a6dec0ad21d4c1dec545c137.tar.gz
compiler-rt-b6d4e2e3a87eb3c9a6dec0ad21d4c1dec545c137.tar.bz2
compiler-rt-b6d4e2e3a87eb3c9a6dec0ad21d4c1dec545c137.tar.xz
Renamed unsigned->float routines to match GCC convention
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@107554 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/floatunsidf.c (renamed from lib/floatunssidf.c)4
-rw-r--r--lib/floatunsisf.c (renamed from lib/floatunssisf.c)4
-rw-r--r--lib/negdf2.c2
-rw-r--r--lib/negsf2.c2
4 files changed, 6 insertions, 6 deletions
diff --git a/lib/floatunssidf.c b/lib/floatunsidf.c
index c9344050..1342c3c4 100644
--- a/lib/floatunssidf.c
+++ b/lib/floatunsidf.c
@@ -1,4 +1,4 @@
-//===-- lib/floatunssidf.c - uint -> double-precision conversion --*- C -*-===//
+//===-- lib/floatunsidf.c - uint -> double-precision conversion ---*- C -*-===//
//
// The LLVM Compiler Infrastructure
//
@@ -16,7 +16,7 @@
#define DOUBLE_PRECISION
#include "fp_lib.h"
-fp_t __floatunssidf(unsigned int a) {
+fp_t __floatunsidf(unsigned int a) {
const int aWidth = sizeof a * CHAR_BIT;
diff --git a/lib/floatunssisf.c b/lib/floatunsisf.c
index 6c5223ae..31c06443 100644
--- a/lib/floatunssisf.c
+++ b/lib/floatunsisf.c
@@ -1,4 +1,4 @@
-//===-- lib/floatunssisf.c - uint -> single-precision conversion --*- C -*-===//
+//===-- lib/floatunsisf.c - uint -> single-precision conversion ---*- C -*-===//
//
// The LLVM Compiler Infrastructure
//
@@ -16,7 +16,7 @@
#define SINGLE_PRECISION
#include "fp_lib.h"
-fp_t __floatunssisf(unsigned int a) {
+fp_t __floatunsisf(unsigned int a) {
const int aWidth = sizeof a * CHAR_BIT;
diff --git a/lib/negdf2.c b/lib/negdf2.c
index eb6efc72..527b068a 100644
--- a/lib/negdf2.c
+++ b/lib/negdf2.c
@@ -1,4 +1,4 @@
-//===-- lib/negdf3.c - double-precision negation ------------------*- C -*-===//
+//===-- lib/negdf2.c - double-precision negation ------------------*- C -*-===//
//
// The LLVM Compiler Infrastructure
//
diff --git a/lib/negsf2.c b/lib/negsf2.c
index f21c7605..5e91e87e 100644
--- a/lib/negsf2.c
+++ b/lib/negsf2.c
@@ -1,4 +1,4 @@
-//===-- lib/negsf3.c - single-precision negation ------------------*- C -*-===//
+//===-- lib/negsf2.c - single-precision negation ------------------*- C -*-===//
//
// The LLVM Compiler Infrastructure
//