mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-24 22:40:36 +00:00
simplify code from previous commits (Thanks Duncan)
llvm-svn: 158999
This commit is contained in:
parent
2e9bfd1dfc
commit
6829350871
@ -66,13 +66,8 @@ static Function *getCalledFunction(const Value *V, bool LookThroughBitCast) {
|
||||
if (LookThroughBitCast)
|
||||
V = V->stripPointerCasts();
|
||||
|
||||
Value *I = const_cast<Value*>(V);
|
||||
CallSite CS;
|
||||
if (CallInst *CI = dyn_cast<CallInst>(I))
|
||||
CS = CallSite(CI);
|
||||
else if (InvokeInst *II = dyn_cast<InvokeInst>(I))
|
||||
CS = CallSite(II);
|
||||
else
|
||||
CallSite CS(const_cast<Value*>(V));
|
||||
if (!CS.getInstruction())
|
||||
return 0;
|
||||
|
||||
Function *Callee = CS.getCalledFunction();
|
||||
|
Loading…
x
Reference in New Issue
Block a user