mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
[MemoryBuiltins] Use ImmutableCallSite instead of CallSite to remove a const_cast and const correct. NFCI
llvm-svn: 300585
This commit is contained in:
parent
3aa04388f3
commit
ef23c7e15c
@ -77,8 +77,8 @@ static const std::pair<LibFunc, AllocFnsTy> AllocationFnData[] = {
|
||||
// TODO: Handle "int posix_memalign(void **, size_t, size_t)"
|
||||
};
|
||||
|
||||
static Function *getCalledFunction(const Value *V, bool LookThroughBitCast,
|
||||
bool &IsNoBuiltin) {
|
||||
static const Function *getCalledFunction(const Value *V, bool LookThroughBitCast,
|
||||
bool &IsNoBuiltin) {
|
||||
// Don't care about intrinsics in this case.
|
||||
if (isa<IntrinsicInst>(V))
|
||||
return nullptr;
|
||||
@ -86,13 +86,13 @@ static Function *getCalledFunction(const Value *V, bool LookThroughBitCast,
|
||||
if (LookThroughBitCast)
|
||||
V = V->stripPointerCasts();
|
||||
|
||||
CallSite CS(const_cast<Value*>(V));
|
||||
ImmutableCallSite CS(V);
|
||||
if (!CS.getInstruction())
|
||||
return nullptr;
|
||||
|
||||
IsNoBuiltin = CS.isNoBuiltin();
|
||||
|
||||
Function *Callee = CS.getCalledFunction();
|
||||
const Function *Callee = CS.getCalledFunction();
|
||||
if (!Callee || !Callee->isDeclaration())
|
||||
return nullptr;
|
||||
return Callee;
|
||||
|
Loading…
Reference in New Issue
Block a user