From fc61aeff2c5d964d81a63b709b5e1a50a5519e83 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 10 Oct 2009 08:01:27 +0000 Subject: [PATCH] change some static_cast into cast, pointed out by Gabor. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83703 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Instructions.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/llvm/Instructions.h b/include/llvm/Instructions.h index 4ba7c084f07..b28fcbb9516 100644 --- a/include/llvm/Instructions.h +++ b/include/llvm/Instructions.h @@ -1913,7 +1913,7 @@ public: /// getIncomingBlock - Return incoming basic block #i. /// BasicBlock *getIncomingBlock(unsigned i) const { - return static_cast(getOperand(i*2+1)); + return cast(getOperand(i*2+1)); } /// getIncomingBlock - Return incoming basic block corresponding @@ -1921,7 +1921,7 @@ public: /// BasicBlock *getIncomingBlock(const Use &U) const { assert(this == U.getUser() && "Iterator doesn't point to PHI's Uses?"); - return static_cast((&U + 1)->get()); + return cast((&U + 1)->get()); } /// getIncomingBlock - Return incoming basic block corresponding -- 2.34.1