diff options
| -rw-r--r-- | compiler-rt/lib/floatunsidf.c (renamed from compiler-rt/lib/floatunssidf.c) | 4 | ||||
| -rw-r--r-- | compiler-rt/lib/floatunsisf.c (renamed from compiler-rt/lib/floatunssisf.c) | 4 | ||||
| -rw-r--r-- | compiler-rt/lib/negdf2.c | 2 | ||||
| -rw-r--r-- | compiler-rt/lib/negsf2.c | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/compiler-rt/lib/floatunssidf.c b/compiler-rt/lib/floatunsidf.c index c93440508c5..1342c3c45c6 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 index 6c5223aef35..31c06443290 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 eb6efc722d4..527b068a17a 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 f21c7605349..5e91e87e988 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 // |

