Don't redeclare sr.

llvm-svn: 136424
This commit is contained in:
Joerg Sonnenberger 2011-07-28 23:15:41 +00:00
parent 269f256645
commit 8b068943a4
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@ __udivmodti4(tu_int a, tu_int b, tu_int* rem)
*rem = n.s.low & (d.s.low - 1);
if (d.s.low == 1)
return n.all;
unsigned sr = __builtin_ctzll(d.s.low);
sr = __builtin_ctzll(d.s.low);
q.s.high = n.s.high >> sr;
q.s.low = (n.s.high << (n_udword_bits - sr)) | (n.s.low >> sr);
return q.all;