fix constness warnings
[oota-llvm.git] / lib / Target / PowerPC / PPCBranchSelector.cpp
index ab251e6b330091acc2c3d95cd9ea9ad48b39a51a..8c427a1c78ba6c71225608be856b22989941c2bf 100644 (file)
@@ -53,7 +53,8 @@ FunctionPass *llvm::createPPCBranchSelectionPass() {
 }
 
 bool PPCBSel::runOnMachineFunction(MachineFunction &Fn) {
-  const PPCInstrInfo *TII = (PPCInstrInfo*)Fn.getTarget().getInstrInfo();
+  const PPCInstrInfo *TII =
+                static_cast<const PPCInstrInfo*>(Fn.getTarget().getInstrInfo());
   // Give the blocks of the function a dense, in-order, numbering.
   Fn.RenumberBlocks();
   BlockSizes.resize(Fn.getNumBlockIDs());