From: Evan Cheng Date: Thu, 25 Jun 2009 22:04:44 +0000 (+0000) Subject: Unbreak mingw build. Patch by Viktor Kutuzov. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=9e03cbefc5b3b8772a18d9bd25593ce62137ac85;p=oota-llvm.git Unbreak mingw build. Patch by Viktor Kutuzov. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74212 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp b/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp index 2bfdcca98d1..e02e2c3506d 100644 --- a/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp +++ b/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp @@ -637,7 +637,7 @@ void ARMAsmPrinter::printBitfieldInvMaskImmOperand(const MachineInstr *MI, int Op) { const MachineOperand &MO = MI->getOperand(Op); uint32_t v = ~MO.getImm(); - int32_t lsb = ffs (v) - 1; + int32_t lsb = CountTrailingZeros_32(v); int32_t width = (32 - CountLeadingZeros_32 (v)) - lsb; assert(MO.isImm() && "Not a valid bf_inv_mask_imm value!"); O << "#" << lsb << ", #" << width;