mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
R600/SI: Replace ffs(x) - 1 with countTrailingZeros(x)
ffs(x) broke the mingw buildbot. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193225 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
752d303a10
commit
9242b73286
@ -1115,7 +1115,7 @@ void SITargetLowering::adjustWritemask(MachineSDNode *&Node,
|
||||
unsigned Comp;
|
||||
for (unsigned i = 0, Dmask = OldDmask; i <= Lane; i++) {
|
||||
assert(Dmask);
|
||||
Comp = ffs(Dmask)-1;
|
||||
Comp = countTrailingZeros(Dmask);
|
||||
Dmask &= ~(1 << Comp);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user