diff options
Diffstat (limited to 'contrib/llvm/lib/Target/AArch64/AArch64BranchFixupPass.cpp')
-rw-r--r-- | contrib/llvm/lib/Target/AArch64/AArch64BranchFixupPass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/llvm/lib/Target/AArch64/AArch64BranchFixupPass.cpp b/contrib/llvm/lib/Target/AArch64/AArch64BranchFixupPass.cpp index 71233ba..11e7f41 100644 --- a/contrib/llvm/lib/Target/AArch64/AArch64BranchFixupPass.cpp +++ b/contrib/llvm/lib/Target/AArch64/AArch64BranchFixupPass.cpp @@ -87,7 +87,7 @@ namespace { // If the block size isn't a multiple of the known bits, assume the // worst case padding. if (Size & ((1u << Bits) - 1)) - Bits = CountTrailingZeros_32(Size); + Bits = countTrailingZeros(Size); return Bits; } |