Fix some files that got left behind in early changeset to unnamed unions fix. Credit to Roman Divacky.
llvm-svn: 80913
diff --git a/compiler-rt/lib/ucmpti2.c b/compiler-rt/lib/ucmpti2.c
index ba32b84..0e7eea3 100644
--- a/compiler-rt/lib/ucmpti2.c
+++ b/compiler-rt/lib/ucmpti2.c
@@ -28,13 +28,13 @@
x.all = a;
utwords y;
y.all = b;
- if (x.high < y.high)
+ if (x.s.high < y.s.high)
return 0;
- if (x.high > y.high)
+ if (x.s.high > y.s.high)
return 2;
- if (x.low < y.low)
+ if (x.s.low < y.s.low)
return 0;
- if (x.low > y.low)
+ if (x.s.low > y.s.low)
return 2;
return 1;
}