[llvm-commits] CVS: llvm-test/SingleSource/UnitTests/2005-07-17-INT-To-FP.c

Evan Cheng evan.cheng at apple.com
Fri Jan 27 16:37:14 PST 2006



Changes in directory llvm-test/SingleSource/UnitTests:

2005-07-17-INT-To-FP.c updated: 1.4 -> 1.5
---
Log message:

Work around a GCC bug where it is incorrectly eliding a float truncate by
using a value that is fully precise as a float.CVS: ----------------------------------------------------------------------


---
Diffs of the changes:  (+1 -1)

 2005-07-17-INT-To-FP.c |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm-test/SingleSource/UnitTests/2005-07-17-INT-To-FP.c
diff -u llvm-test/SingleSource/UnitTests/2005-07-17-INT-To-FP.c:1.4 llvm-test/SingleSource/UnitTests/2005-07-17-INT-To-FP.c:1.5
--- llvm-test/SingleSource/UnitTests/2005-07-17-INT-To-FP.c:1.4	Fri Nov 11 16:25:53 2005
+++ llvm-test/SingleSource/UnitTests/2005-07-17-INT-To-FP.c	Fri Jan 27 18:37:03 2006
@@ -3,7 +3,7 @@
 
 int tests[] = {
   0x80000000,
-  -123456789,
+  -123456792,
   -10,
   -2,
   -1,






More information about the llvm-commits mailing list