summaryrefslogtreecommitdiffstats
path: root/lib/IR/Statepoint.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/IR/Statepoint.cpp')
-rw-r--r--lib/IR/Statepoint.cpp15
1 files changed, 1 insertions, 14 deletions
diff --git a/lib/IR/Statepoint.cpp b/lib/IR/Statepoint.cpp
index d45c188..27a990e 100644
--- a/lib/IR/Statepoint.cpp
+++ b/lib/IR/Statepoint.cpp
@@ -40,20 +40,7 @@ bool llvm::isStatepoint(const Value &inst) {
}
bool llvm::isGCRelocate(const ImmutableCallSite &CS) {
- if (!CS.getInstruction()) {
- // This is not a call site
- return false;
- }
-
- return isGCRelocate(CS.getInstruction());
-}
-bool llvm::isGCRelocate(const Value *inst) {
- if (const CallInst *call = dyn_cast<CallInst>(inst)) {
- if (const Function *F = call->getCalledFunction()) {
- return F->getIntrinsicID() == Intrinsic::experimental_gc_relocate;
- }
- }
- return false;
+ return CS.getInstruction() && isa<GCRelocateInst>(CS.getInstruction());
}
bool llvm::isGCResult(const ImmutableCallSite &CS) {
OpenPOWER on IntegriCloud