Renamed unsigned->float routines to match GCC convention

llvm-svn: 107554
diff --git a/compiler-rt/lib/floatunssidf.c b/compiler-rt/lib/floatunsidf.c
similarity index 92%
rename from compiler-rt/lib/floatunssidf.c
rename to compiler-rt/lib/floatunsidf.c
index c934405..1342c3c 100644
--- a/compiler-rt/lib/floatunssidf.c
+++ b/compiler-rt/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/compiler-rt/lib/floatunssisf.c b/compiler-rt/lib/floatunsisf.c
similarity index 92%
rename from compiler-rt/lib/floatunssisf.c
rename to compiler-rt/lib/floatunsisf.c
index 6c5223a..31c0644 100644
--- a/compiler-rt/lib/floatunssisf.c
+++ b/compiler-rt/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/compiler-rt/lib/negdf2.c b/compiler-rt/lib/negdf2.c
index eb6efc7..527b068 100644
--- a/compiler-rt/lib/negdf2.c
+++ b/compiler-rt/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/compiler-rt/lib/negsf2.c b/compiler-rt/lib/negsf2.c
index f21c760..5e91e87 100644
--- a/compiler-rt/lib/negsf2.c
+++ b/compiler-rt/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
 //