summaryrefslogtreecommitdiff
path: root/lib/parityti2.c
diff options
context:
space:
mode:
authorEdward O'Callaghan <eocallaghan@auroraux.org>2009-09-03 09:12:20 +0000
committerEdward O'Callaghan <eocallaghan@auroraux.org>2009-09-03 09:12:20 +0000
commitaabd961cc27f5d05f441375e5ba4242d63fea11f (patch)
tree319d56d8675641e611da11b3ad12f87801001cdd /lib/parityti2.c
parente8178e2a99ae5d7ccfe5882804a294fd0d3f453f (diff)
downloadcompiler-rt-aabd961cc27f5d05f441375e5ba4242d63fea11f.tar.gz
Fix some files that got left behind in early changeset to unnamed unions fix. Credit to Roman Divacky.
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@80913 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/parityti2.c')
-rw-r--r--lib/parityti2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/parityti2.c b/lib/parityti2.c
index 8ef536854..650d41793 100644
--- a/lib/parityti2.c
+++ b/lib/parityti2.c
@@ -25,7 +25,7 @@ __parityti2(ti_int a)
{
twords x;
x.all = a;
- return __paritydi2(x.high ^ x.low);
+ return __paritydi2(x.s.high ^ x.s.low);
}
#endif