summaryrefslogtreecommitdiff
path: root/include/llvm/Support/MathExtras.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/Support/MathExtras.h')
-rw-r--r--include/llvm/Support/MathExtras.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/Support/MathExtras.h b/include/llvm/Support/MathExtras.h
index 3dcb3a3972..8209445f15 100644
--- a/include/llvm/Support/MathExtras.h
+++ b/include/llvm/Support/MathExtras.h
@@ -181,9 +181,9 @@ inline double BitsToDouble(uint64_t Bits) {
// BitsToFloat - This function takes a 32-bit integer and returns the bit
// equivalent float.
-inline float BitsToFloat(unsigned Bits) {
+inline float BitsToFloat(uint32_t Bits) {
union {
- unsigned I;
+ uint32_t I;
float F;
} T;
T.I = Bits;
@@ -203,9 +203,9 @@ inline uint64_t DoubleToBits(double Double) {
// FloatToBits - This function takes a float and returns the bit
// equivalent 32-bit integer.
-inline unsigned FloatToBits(float Float) {
+inline uint32_t FloatToBits(float Float) {
union {
- unsigned I;
+ uint32_t I;
float F;
} T;
T.F = Float;