diff options
author | Edward O'Callaghan <eocallaghan@auroraux.org> | 2009-09-03 09:12:20 +0000 |
---|---|---|
committer | Edward O'Callaghan <eocallaghan@auroraux.org> | 2009-09-03 09:12:20 +0000 |
commit | aabd961cc27f5d05f441375e5ba4242d63fea11f (patch) | |
tree | 319d56d8675641e611da11b3ad12f87801001cdd /lib/ctzti2.c | |
parent | e8178e2a99ae5d7ccfe5882804a294fd0d3f453f (diff) | |
download | compiler-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/ctzti2.c')
-rw-r--r-- | lib/ctzti2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ctzti2.c b/lib/ctzti2.c index fdfac0d46..f2d41fee1 100644 --- a/lib/ctzti2.c +++ b/lib/ctzti2.c @@ -25,8 +25,8 @@ __ctzti2(ti_int a) { twords x; x.all = a; - const di_int f = -(x.low == 0); - return __builtin_ctzll((x.high & f) | (x.low & ~f)) + + const di_int f = -(x.s.low == 0); + return __builtin_ctzll((x.s.high & f) | (x.s.low & ~f)) + ((si_int)f & ((si_int)(sizeof(di_int) * CHAR_BIT))); } |