[llvm-commits] [compiler-rt] r85261 - /compiler-rt/trunk/test/Unit/

Daniel Dunbar daniel at zuster.org
Tue Oct 27 10:49:07 PDT 2009


Author: ddunbar
Date: Tue Oct 27 12:49:07 2009
New Revision: 85261

URL: http://llvm.org/viewvc/llvm-project?rev=85261&view=rev
Log:
Fix tests broken by removal of de-anonyomizing structs.

Modified:
    compiler-rt/trunk/test/Unit/absvti2_test.c
    compiler-rt/trunk/test/Unit/addvti3_test.c
    compiler-rt/trunk/test/Unit/ashlti3_test.c
    compiler-rt/trunk/test/Unit/ashrti3_test.c
    compiler-rt/trunk/test/Unit/clzti2_test.c
    compiler-rt/trunk/test/Unit/cmpti2_test.c
    compiler-rt/trunk/test/Unit/ctzti2_test.c
    compiler-rt/trunk/test/Unit/divti3_test.c
    compiler-rt/trunk/test/Unit/ffsti2_test.c
    compiler-rt/trunk/test/Unit/fixdfti_test.c
    compiler-rt/trunk/test/Unit/fixsfti_test.c
    compiler-rt/trunk/test/Unit/fixunsdfti_test.c
    compiler-rt/trunk/test/Unit/fixunssfti_test.c
    compiler-rt/trunk/test/Unit/fixunsxfti_test.c
    compiler-rt/trunk/test/Unit/fixxfti_test.c
    compiler-rt/trunk/test/Unit/floattidf_test.c
    compiler-rt/trunk/test/Unit/floattisf_test.c
    compiler-rt/trunk/test/Unit/floattixf_test.c
    compiler-rt/trunk/test/Unit/floatuntidf_test.c
    compiler-rt/trunk/test/Unit/floatuntisf_test.c
    compiler-rt/trunk/test/Unit/floatuntixf_test.c
    compiler-rt/trunk/test/Unit/lshrti3_test.c
    compiler-rt/trunk/test/Unit/modti3_test.c
    compiler-rt/trunk/test/Unit/multi3_test.c
    compiler-rt/trunk/test/Unit/mulvti3_test.c
    compiler-rt/trunk/test/Unit/negti2_test.c
    compiler-rt/trunk/test/Unit/negvti2_test.c
    compiler-rt/trunk/test/Unit/parityti2_test.c
    compiler-rt/trunk/test/Unit/popcountti2_test.c
    compiler-rt/trunk/test/Unit/subvti3_test.c
    compiler-rt/trunk/test/Unit/ucmpti2_test.c
    compiler-rt/trunk/test/Unit/udivmodti4_test.c
    compiler-rt/trunk/test/Unit/udivti3_test.c
    compiler-rt/trunk/test/Unit/umodti3_test.c

Modified: compiler-rt/trunk/test/Unit/absvti2_test.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/Unit/absvti2_test.c?rev=85261&r1=85260&r2=85261&view=diff

==============================================================================
--- compiler-rt/trunk/test/Unit/absvti2_test.c (original)
+++ compiler-rt/trunk/test/Unit/absvti2_test.c Tue Oct 27 12:49:07 2009
@@ -38,7 +38,8 @@
         expectedt.all = expected;
         printf("error in __absvti2(0x%llX%.16llX) = "
                "0x%llX%.16llX, expected positive 0x%llX%.16llX\n",
-               at.high, at.low, xt.high, xt.low, expectedt.high, expectedt.low);
+               at.s.high, at.s.low, xt.s.high, xt.s.low,
+               expectedt.s.high, expectedt.s.low);
     }
     return x != expected;
 }

Modified: compiler-rt/trunk/test/Unit/addvti3_test.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/Unit/addvti3_test.c?rev=85261&r1=85260&r2=85261&view=diff

==============================================================================
--- compiler-rt/trunk/test/Unit/addvti3_test.c (original)
+++ compiler-rt/trunk/test/Unit/addvti3_test.c Tue Oct 27 12:49:07 2009
@@ -38,8 +38,8 @@
         expectedt.all = expected;
         printf("error in test__addvti3(0x%llX%.16llX, 0x%llX%.16llX) = "
                "0x%llX%.16llX, expected 0x%llX%.16llX\n",
-                at.high, at.low, bt.high, bt.low, xt.high, xt.low,
-                expectedt.high, expectedt.low);
+                at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low,
+                expectedt.s.high, expectedt.s.low);
     }
     return x != expected;
 }

Modified: compiler-rt/trunk/test/Unit/ashlti3_test.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/Unit/ashlti3_test.c?rev=85261&r1=85260&r2=85261&view=diff

==============================================================================
--- compiler-rt/trunk/test/Unit/ashlti3_test.c (original)
+++ compiler-rt/trunk/test/Unit/ashlti3_test.c Tue Oct 27 12:49:07 2009
@@ -37,8 +37,8 @@
         expectedt.all = expected;
         printf("error in __ashlti3: 0x%llX%.16llX << %d = 0x%llX%.16llX,"
                " expected 0x%llX%.16llX\n",
-                at.high, at.low, b, xt.high, xt.low,
-                expectedt.high, expectedt.low);
+                at.s.high, at.s.low, b, xt.s.high, xt.s.low,
+                expectedt.s.high, expectedt.s.low);
     }
     return x != expected;
 }

Modified: compiler-rt/trunk/test/Unit/ashrti3_test.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/Unit/ashrti3_test.c?rev=85261&r1=85260&r2=85261&view=diff

==============================================================================
--- compiler-rt/trunk/test/Unit/ashrti3_test.c (original)
+++ compiler-rt/trunk/test/Unit/ashrti3_test.c Tue Oct 27 12:49:07 2009
@@ -35,8 +35,8 @@
         expectedt.all = expected;
         printf("error in __ashrti3: 0x%llX%.16llX >> %d = 0x%llX%.16llX,"
                " expected 0x%llX%.16llX\n",
-                at.high, at.low, b, xt.high, xt.low,
-                expectedt.high, expectedt.low);
+                at.s.high, at.s.low, b, xt.s.high, xt.s.low,
+                expectedt.s.high, expectedt.s.low);
     }
     return x != expected;
 }

Modified: compiler-rt/trunk/test/Unit/clzti2_test.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/Unit/clzti2_test.c?rev=85261&r1=85260&r2=85261&view=diff

==============================================================================
--- compiler-rt/trunk/test/Unit/clzti2_test.c (original)
+++ compiler-rt/trunk/test/Unit/clzti2_test.c Tue Oct 27 12:49:07 2009
@@ -30,7 +30,7 @@
         twords at;
         at.all = a;
         printf("error in __clzti2(0x%llX%.16llX) = %d, expected %d\n",
-               at.high, at.low, x, expected);
+               at.s.high, at.s.low, x, expected);
     }
     return x != expected;
 }

Modified: compiler-rt/trunk/test/Unit/cmpti2_test.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/Unit/cmpti2_test.c?rev=85261&r1=85260&r2=85261&view=diff

==============================================================================
--- compiler-rt/trunk/test/Unit/cmpti2_test.c (original)
+++ compiler-rt/trunk/test/Unit/cmpti2_test.c Tue Oct 27 12:49:07 2009
@@ -32,7 +32,7 @@
         twords bt;
         bt.all = b;
         printf("error in __cmpti2(0x%llX%.16llX, 0x%llX%.16llX) = %d, expected %d\n",
-               at.high, at.low, bt.high, bt.low, x, expected);
+               at.s.high, at.s.low, bt.s.high, bt.s.low, x, expected);
     }
     return x != expected;
 }

Modified: compiler-rt/trunk/test/Unit/ctzti2_test.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/Unit/ctzti2_test.c?rev=85261&r1=85260&r2=85261&view=diff

==============================================================================
--- compiler-rt/trunk/test/Unit/ctzti2_test.c (original)
+++ compiler-rt/trunk/test/Unit/ctzti2_test.c Tue Oct 27 12:49:07 2009
@@ -30,7 +30,7 @@
         twords at;
         at.all = a;
         printf("error in __ctzti2(0x%llX%.16llX) = %d, expected %d\n",
-               at.high, at.low, x, expected);
+               at.s.high, at.s.low, x, expected);
     }
     return x != expected;
 }

Modified: compiler-rt/trunk/test/Unit/divti3_test.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/Unit/divti3_test.c?rev=85261&r1=85260&r2=85261&view=diff

==============================================================================
--- compiler-rt/trunk/test/Unit/divti3_test.c (original)
+++ compiler-rt/trunk/test/Unit/divti3_test.c Tue Oct 27 12:49:07 2009
@@ -35,8 +35,8 @@
         expectedt.all = expected;
         printf("error in __divti3: 0x%llX%.16llX / 0x%llX%.16llX = "
                "0x%llX%.16llX, expected 0x%llX%.16llX\n",
-               at.high, at.low, bt.high, bt.low, xt.high, xt.low,
-               expectedt.high, expectedt.low);
+               at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low,
+               expectedt.s.high, expectedt.s.low);
     }
     return x != expected;
 }

Modified: compiler-rt/trunk/test/Unit/ffsti2_test.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/Unit/ffsti2_test.c?rev=85261&r1=85260&r2=85261&view=diff

==============================================================================
--- compiler-rt/trunk/test/Unit/ffsti2_test.c (original)
+++ compiler-rt/trunk/test/Unit/ffsti2_test.c Tue Oct 27 12:49:07 2009
@@ -29,7 +29,7 @@
         twords at;
         at.all = a;
         printf("error in __ffsti2(0x%llX%.16llX) = %d, expected %d\n",
-               at.high, at.low, x, expected);
+               at.s.high, at.s.low, x, expected);
     }
     return x != expected;
 }

Modified: compiler-rt/trunk/test/Unit/fixdfti_test.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/Unit/fixdfti_test.c?rev=85261&r1=85260&r2=85261&view=diff

==============================================================================
--- compiler-rt/trunk/test/Unit/fixdfti_test.c (original)
+++ compiler-rt/trunk/test/Unit/fixdfti_test.c Tue Oct 27 12:49:07 2009
@@ -36,7 +36,7 @@
         twords expectedt;
         expectedt.all = expected;
         printf("error in __fixdfti(%A) = 0x%.16llX%.16llX, expected 0x%.16llX%.16llX\n",
-        a, xt.high, xt.low, expectedt.high, expectedt.low);
+        a, xt.s.high, xt.s.low, expectedt.s.high, expectedt.s.low);
     }
     return x != expected;
 }

Modified: compiler-rt/trunk/test/Unit/fixsfti_test.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/Unit/fixsfti_test.c?rev=85261&r1=85260&r2=85261&view=diff

==============================================================================
--- compiler-rt/trunk/test/Unit/fixsfti_test.c (original)
+++ compiler-rt/trunk/test/Unit/fixsfti_test.c Tue Oct 27 12:49:07 2009
@@ -36,7 +36,7 @@
         twords expectedt;
         expectedt.all = expected;
         printf("error in __fixsfti(%A) = 0x%.16llX%.16llX, expected 0x%.16llX%.16llX\n",
-        a, xt.high, xt.low, expectedt.high, expectedt.low);
+        a, xt.s.high, xt.s.low, expectedt.s.high, expectedt.s.low);
     }
     return x != expected;
 }

Modified: compiler-rt/trunk/test/Unit/fixunsdfti_test.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/Unit/fixunsdfti_test.c?rev=85261&r1=85260&r2=85261&view=diff

==============================================================================
--- compiler-rt/trunk/test/Unit/fixunsdfti_test.c (original)
+++ compiler-rt/trunk/test/Unit/fixunsdfti_test.c Tue Oct 27 12:49:07 2009
@@ -38,7 +38,7 @@
         utwords expectedt;
         expectedt.all = expected;
         printf("error in __fixunsdfti(%A) = 0x%.16llX%.16llX, expected 0x%.16llX%.16llX\n",
-               a, xt.high, xt.low, expectedt.high, expectedt.low);
+               a, xt.s.high, xt.s.low, expectedt.s.high, expectedt.s.low);
     }
     return x != expected;
 }

Modified: compiler-rt/trunk/test/Unit/fixunssfti_test.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/Unit/fixunssfti_test.c?rev=85261&r1=85260&r2=85261&view=diff

==============================================================================
--- compiler-rt/trunk/test/Unit/fixunssfti_test.c (original)
+++ compiler-rt/trunk/test/Unit/fixunssfti_test.c Tue Oct 27 12:49:07 2009
@@ -38,7 +38,7 @@
         utwords expectedt;
         expectedt.all = expected;
         printf("error in __fixunssfti(%A) = 0x%.16llX%.16llX, expected 0x%.16llX%.16llX\n",
-               a, xt.high, xt.low, expectedt.high, expectedt.low);
+               a, xt.s.high, xt.s.low, expectedt.s.high, expectedt.s.low);
     }
     return x != expected;
 }

Modified: compiler-rt/trunk/test/Unit/fixunsxfti_test.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/Unit/fixunsxfti_test.c?rev=85261&r1=85260&r2=85261&view=diff

==============================================================================
--- compiler-rt/trunk/test/Unit/fixunsxfti_test.c (original)
+++ compiler-rt/trunk/test/Unit/fixunsxfti_test.c Tue Oct 27 12:49:07 2009
@@ -39,7 +39,7 @@
         utwords expectedt;
         expectedt.all = expected;
         printf("error in __fixunsxfti(%LA) = 0x%.16llX%.16llX, expected 0x%.16llX%.16llX\n",
-               a, xt.high, xt.low, expectedt.high, expectedt.low);
+               a, xt.s.high, xt.s.low, expectedt.s.high, expectedt.s.low);
     }
     return x != expected;
 }

Modified: compiler-rt/trunk/test/Unit/fixxfti_test.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/Unit/fixxfti_test.c?rev=85261&r1=85260&r2=85261&view=diff

==============================================================================
--- compiler-rt/trunk/test/Unit/fixxfti_test.c (original)
+++ compiler-rt/trunk/test/Unit/fixxfti_test.c Tue Oct 27 12:49:07 2009
@@ -37,7 +37,7 @@
         utwords expectedt;
         expectedt.all = expected;
         printf("error in __fixxfti(%LA) = 0x%.16llX%.16llX, expected 0x%.16llX%.16llX\n",
-               a, xt.high, xt.low, expectedt.high, expectedt.low);
+               a, xt.s.high, xt.s.low, expectedt.s.high, expectedt.s.low);
     }
     return x != expected;
 }

Modified: compiler-rt/trunk/test/Unit/floattidf_test.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/Unit/floattidf_test.c?rev=85261&r1=85260&r2=85261&view=diff

==============================================================================
--- compiler-rt/trunk/test/Unit/floattidf_test.c (original)
+++ compiler-rt/trunk/test/Unit/floattidf_test.c Tue Oct 27 12:49:07 2009
@@ -34,7 +34,7 @@
         twords at;
         at.all = a;
         printf("error in __floattidf(0x%.16llX%.16llX) = %a, expected %a\n",
-               at.high, at.low, x, expected);
+               at.s.high, at.s.low, x, expected);
     }
     return x != expected;
 }

Modified: compiler-rt/trunk/test/Unit/floattisf_test.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/Unit/floattisf_test.c?rev=85261&r1=85260&r2=85261&view=diff

==============================================================================
--- compiler-rt/trunk/test/Unit/floattisf_test.c (original)
+++ compiler-rt/trunk/test/Unit/floattisf_test.c Tue Oct 27 12:49:07 2009
@@ -34,7 +34,7 @@
         twords at;
         at.all = a;
         printf("error in __floattisf(0x%.16llX%.16llX) = %a, expected %a\n",
-               at.high, at.low, x, expected);
+               at.s.high, at.s.low, x, expected);
     }
     return x != expected;
 }

Modified: compiler-rt/trunk/test/Unit/floattixf_test.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/Unit/floattixf_test.c?rev=85261&r1=85260&r2=85261&view=diff

==============================================================================
--- compiler-rt/trunk/test/Unit/floattixf_test.c (original)
+++ compiler-rt/trunk/test/Unit/floattixf_test.c Tue Oct 27 12:49:07 2009
@@ -35,7 +35,7 @@
         twords at;
         at.all = a;
         printf("error in __floattixf(0x%.16llX%.16llX) = %LA, expected %LA\n",
-               at.high, at.low, x, expected);
+               at.s.high, at.s.low, x, expected);
     }
     return x != expected;
 }

Modified: compiler-rt/trunk/test/Unit/floatuntidf_test.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/Unit/floatuntidf_test.c?rev=85261&r1=85260&r2=85261&view=diff

==============================================================================
--- compiler-rt/trunk/test/Unit/floatuntidf_test.c (original)
+++ compiler-rt/trunk/test/Unit/floatuntidf_test.c Tue Oct 27 12:49:07 2009
@@ -34,7 +34,7 @@
         utwords at;
         at.all = a;
         printf("error in __floatuntidf(0x%.16llX%.16llX) = %a, expected %a\n",
-               at.high, at.low, x, expected);
+               at.s.high, at.s.low, x, expected);
     }
     return x != expected;
 }

Modified: compiler-rt/trunk/test/Unit/floatuntisf_test.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/Unit/floatuntisf_test.c?rev=85261&r1=85260&r2=85261&view=diff

==============================================================================
--- compiler-rt/trunk/test/Unit/floatuntisf_test.c (original)
+++ compiler-rt/trunk/test/Unit/floatuntisf_test.c Tue Oct 27 12:49:07 2009
@@ -34,7 +34,7 @@
         utwords at;
         at.all = a;
         printf("error in __floatuntisf(0x%.16llX%.16llX) = %a, expected %a\n",
-               at.high, at.low, x, expected);
+               at.s.high, at.s.low, x, expected);
     }
     return x != expected;
 }

Modified: compiler-rt/trunk/test/Unit/floatuntixf_test.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/Unit/floatuntixf_test.c?rev=85261&r1=85260&r2=85261&view=diff

==============================================================================
--- compiler-rt/trunk/test/Unit/floatuntixf_test.c (original)
+++ compiler-rt/trunk/test/Unit/floatuntixf_test.c Tue Oct 27 12:49:07 2009
@@ -35,7 +35,7 @@
         utwords at;
         at.all = a;
         printf("error in __floatuntixf(0x%.16llX%.16llX) = %LA, expected %LA\n",
-               at.high, at.low, x, expected);
+               at.s.high, at.s.low, x, expected);
     }
     return x != expected;
 }

Modified: compiler-rt/trunk/test/Unit/lshrti3_test.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/Unit/lshrti3_test.c?rev=85261&r1=85260&r2=85261&view=diff

==============================================================================
--- compiler-rt/trunk/test/Unit/lshrti3_test.c (original)
+++ compiler-rt/trunk/test/Unit/lshrti3_test.c Tue Oct 27 12:49:07 2009
@@ -35,8 +35,8 @@
         expectedt.all = expected;
         printf("error in __lshrti3: 0x%llX%.16llX >> %d = 0x%llX%.16llX,"
                " expected 0x%llX%.16llX\n",
-                at.high, at.low, b, xt.high, xt.low,
-                expectedt.high, expectedt.low);
+                at.s.high, at.s.low, b, xt.s.high, xt.s.low,
+                expectedt.s.high, expectedt.s.low);
     }
     return x != expected;
 }

Modified: compiler-rt/trunk/test/Unit/modti3_test.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/Unit/modti3_test.c?rev=85261&r1=85260&r2=85261&view=diff

==============================================================================
--- compiler-rt/trunk/test/Unit/modti3_test.c (original)
+++ compiler-rt/trunk/test/Unit/modti3_test.c Tue Oct 27 12:49:07 2009
@@ -35,8 +35,8 @@
         expectedt.all = expected;
         printf("error in __modti3: 0x%.16llX%.16llX %% 0x%.16llX%.16llX = "
                "0x%.16llX%.16llX, expected 0x%.16llX%.16llX\n",
-               at.high, at.low, bt.high, bt.low, xt.high, xt.low,
-               expectedt.high, expectedt.low);
+               at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low,
+               expectedt.s.high, expectedt.s.low);
     }
     return x != expected;
 }

Modified: compiler-rt/trunk/test/Unit/multi3_test.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/Unit/multi3_test.c?rev=85261&r1=85260&r2=85261&view=diff

==============================================================================
--- compiler-rt/trunk/test/Unit/multi3_test.c (original)
+++ compiler-rt/trunk/test/Unit/multi3_test.c Tue Oct 27 12:49:07 2009
@@ -33,8 +33,8 @@
         expectedt.all = expected;
         printf("error in __multi3: 0x%.16llX%.16llX * 0x%.16llX%.16llX = "
                "0x%.16llX%.16llX, expected 0x%.16llX%.16llX\n",
-               at.high, at.low, bt.high, bt.low, xt.high, xt.low,
-               expectedt.high, expectedt.low);
+               at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low,
+               expectedt.s.high, expectedt.s.low);
     }
     return x != expected;
 }

Modified: compiler-rt/trunk/test/Unit/mulvti3_test.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/Unit/mulvti3_test.c?rev=85261&r1=85260&r2=85261&view=diff

==============================================================================
--- compiler-rt/trunk/test/Unit/mulvti3_test.c (original)
+++ compiler-rt/trunk/test/Unit/mulvti3_test.c Tue Oct 27 12:49:07 2009
@@ -37,8 +37,8 @@
         expectedt.all = expected;
         printf("error in __mulvti3: 0x%.16llX%.16llX * 0x%.16llX%.16llX = "
                "0x%.16llX%.16llX, expected 0x%.16llX%.16llX\n",
-               at.high, at.low, bt.high, bt.low, xt.high, xt.low,
-               expectedt.high, expectedt.low);
+               at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low,
+               expectedt.s.high, expectedt.s.low);
     }
     return x != expected;
 }

Modified: compiler-rt/trunk/test/Unit/negti2_test.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/Unit/negti2_test.c?rev=85261&r1=85260&r2=85261&view=diff

==============================================================================
--- compiler-rt/trunk/test/Unit/negti2_test.c (original)
+++ compiler-rt/trunk/test/Unit/negti2_test.c Tue Oct 27 12:49:07 2009
@@ -33,7 +33,7 @@
         expectedt.all = expected;
         printf("error in __negti2: -0x%.16llX%.16llX = 0x%.16llX%.16llX, "
                "expected 0x%.16llX%.16llX\n",
-               at.high, at.low, xt.high, xt.low, expectedt.high, expectedt.low);
+               at.s.high, at.s.low, xt.s.high, xt.s.low, expectedt.s.high, expectedt.s.low);
     }
     return x != expected;
 }

Modified: compiler-rt/trunk/test/Unit/negvti2_test.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/Unit/negvti2_test.c?rev=85261&r1=85260&r2=85261&view=diff

==============================================================================
--- compiler-rt/trunk/test/Unit/negvti2_test.c (original)
+++ compiler-rt/trunk/test/Unit/negvti2_test.c Tue Oct 27 12:49:07 2009
@@ -37,7 +37,7 @@
         expectedt.all = expected;
         printf("error in __negvti2(0x%.16llX%.16llX) = 0x%.16llX%.16llX, "
                "expected 0x%.16llX%.16llX\n",
-               at.high, at.low, xt.high, xt.low, expectedt.high, expectedt.low);
+               at.s.high, at.s.low, xt.s.high, xt.s.low, expectedt.s.high, expectedt.s.low);
     }
     return x != expected;
 }

Modified: compiler-rt/trunk/test/Unit/parityti2_test.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/Unit/parityti2_test.c?rev=85261&r1=85260&r2=85261&view=diff

==============================================================================
--- compiler-rt/trunk/test/Unit/parityti2_test.c (original)
+++ compiler-rt/trunk/test/Unit/parityti2_test.c Tue Oct 27 12:49:07 2009
@@ -38,7 +38,7 @@
         twords at;
         at.all = a;
         printf("error in __parityti2(0x%.16llX%.16llX) = %d, expected %d\n",
-               at.high, at.low, x, expected);
+               at.s.high, at.s.low, x, expected);
     }
     return x != expected;
 }

Modified: compiler-rt/trunk/test/Unit/popcountti2_test.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/Unit/popcountti2_test.c?rev=85261&r1=85260&r2=85261&view=diff

==============================================================================
--- compiler-rt/trunk/test/Unit/popcountti2_test.c (original)
+++ compiler-rt/trunk/test/Unit/popcountti2_test.c Tue Oct 27 12:49:07 2009
@@ -38,7 +38,7 @@
         twords at;
         at.all = a;
         printf("error in __popcountti2(0x%.16llX%.16llX) = %d, expected %d\n",
-               at.high, at.low, x, expected);
+               at.s.high, at.s.low, x, expected);
     }
     return x != expected;
 }

Modified: compiler-rt/trunk/test/Unit/subvti3_test.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/Unit/subvti3_test.c?rev=85261&r1=85260&r2=85261&view=diff

==============================================================================
--- compiler-rt/trunk/test/Unit/subvti3_test.c (original)
+++ compiler-rt/trunk/test/Unit/subvti3_test.c Tue Oct 27 12:49:07 2009
@@ -39,8 +39,8 @@
         expectedt.all = expected;
         printf("error in test__subvsi3(0x%.16llX%.16llX, 0x%.16llX%.16llX) = "
                "0x%.16llX%.16llX, expected 0x%.16llX%.16llX\n",
-               at.high, at.low, bt.high, bt.low, xt.high, xt.low,
-               expectedt.high, expectedt.low);
+               at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low,
+               expectedt.s.high, expectedt.s.low);
     }
     return x != expected;
 }

Modified: compiler-rt/trunk/test/Unit/ucmpti2_test.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/Unit/ucmpti2_test.c?rev=85261&r1=85260&r2=85261&view=diff

==============================================================================
--- compiler-rt/trunk/test/Unit/ucmpti2_test.c (original)
+++ compiler-rt/trunk/test/Unit/ucmpti2_test.c Tue Oct 27 12:49:07 2009
@@ -33,7 +33,7 @@
         bt.all = b;
         printf("error in __ucmpti2(0x%.16llX%.16llX, 0x%.16llX%.16llX) = %d, "
                "expected %d\n",
-               at.high, at.low, bt.high, bt.low, x, expected);
+               at.s.high, at.s.low, bt.s.high, bt.s.low, x, expected);
     }
     return x != expected;
 }

Modified: compiler-rt/trunk/test/Unit/udivmodti4_test.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/Unit/udivmodti4_test.c?rev=85261&r1=85260&r2=85261&view=diff

==============================================================================
--- compiler-rt/trunk/test/Unit/udivmodti4_test.c (original)
+++ compiler-rt/trunk/test/Unit/udivmodti4_test.c Tue Oct 27 12:49:07 2009
@@ -42,9 +42,9 @@
         printf("error in __udivmodti4: 0x%.16llX%.16llX / 0x%.16llX%.16llX = "
                "0x%.16llX%.16llX, R = 0x%.16llX%.16llX, expected 0x%.16llX%.16llX, "
                "0x%.16llX%.16llX\n",
-               at.high, at.low, bt.high, bt.low, qt.high, qt.low,
-               rt.high, rt.low, expected_qt.high, expected_qt.low,
-               expected_rt.high, expected_rt.low);
+               at.s.high, at.s.low, bt.s.high, bt.s.low, qt.s.high, qt.s.low,
+               rt.s.high, rt.s.low, expected_qt.s.high, expected_qt.s.low,
+               expected_rt.s.high, expected_rt.s.low);
     }
     return !(q == expected_q && r == expected_r);
 }

Modified: compiler-rt/trunk/test/Unit/udivti3_test.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/Unit/udivti3_test.c?rev=85261&r1=85260&r2=85261&view=diff

==============================================================================
--- compiler-rt/trunk/test/Unit/udivti3_test.c (original)
+++ compiler-rt/trunk/test/Unit/udivti3_test.c Tue Oct 27 12:49:07 2009
@@ -35,8 +35,8 @@
         expected_qt.all = expected_q;
         printf("error in __udivti3: 0x%llX%.16llX / 0x%llX%.16llX = "
                "0x%llX%.16llX, expected 0x%llX%.16llX\n",
-               at.high, at.low, bt.high, bt.low, qt.high, qt.low,
-               expected_qt.high, expected_qt.low);
+               at.s.high, at.s.low, bt.s.high, bt.s.low, qt.s.high, qt.s.low,
+               expected_qt.s.high, expected_qt.s.low);
     }
     return q != expected_q;
 }

Modified: compiler-rt/trunk/test/Unit/umodti3_test.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/Unit/umodti3_test.c?rev=85261&r1=85260&r2=85261&view=diff

==============================================================================
--- compiler-rt/trunk/test/Unit/umodti3_test.c (original)
+++ compiler-rt/trunk/test/Unit/umodti3_test.c Tue Oct 27 12:49:07 2009
@@ -35,8 +35,8 @@
         expected_rt.all = expected_r;
         printf("error in __umodti3: 0x%llX%.16llX %% 0x%llX%.16llX = "
                "0x%llX%.16llX, expected 0x%llX%.16llX\n",
-               at.high, at.low, bt.high, bt.low, rt.high, rt.low,
-               expected_rt.high, expected_rt.low);
+               at.s.high, at.s.low, bt.s.high, bt.s.low, rt.s.high, rt.s.low,
+               expected_rt.s.high, expected_rt.s.low);
     }
     return r != expected_r;
 }





More information about the llvm-commits mailing list