Make isInt?? and isUint?? template specializations of the generic versions. This
[oota-llvm.git] / lib / Target / PowerPC / PPCBranchSelector.cpp
index a752421580d4be5364ec4e9f79c268afee9751b6..52948c868b9c9fcd2065f33c49f524a71036af58 100644 (file)
@@ -130,7 +130,7 @@ bool PPCBSel::runOnMachineFunction(MachineFunction &Fn) {
         }
 
         // If this branch is in range, ignore it.
-        if (isInt16(BranchSize)) {
+        if (isInt<16>(BranchSize)) {
           MBBStartOffset += 4;
           continue;
         }