Change all floating constants that are not exactly
representable to use hex format.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41722 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/CodeGen/CBackend/2006-12-11-Float-Bitcast.ll b/test/CodeGen/CBackend/2006-12-11-Float-Bitcast.ll
index df03c4e..e692005 100644
--- a/test/CodeGen/CBackend/2006-12-11-Float-Bitcast.ll
+++ b/test/CodeGen/CBackend/2006-12-11-Float-Bitcast.ll
@@ -38,9 +38,9 @@
 }
 
 int %main(int %argc, sbyte** %argv) {
-  %a = call int %test1(float 3.1415926)
+  %a = call int %test1(float 0x400921FB40000000)
   %b = call float %test2(int %a)
-  %c = call long %test3(double 3.1415926)
+  %c = call long %test3(double 0x400921FB4D12D84A)
   %d = call double %test4(long %c)
   %e = call double %test5(double 7.0)
   %f = call float %test6(float 7.0)