Removing an unused variable warning I accidentally introduced with my last warning fix; NFC.

llvm-svn: 228295
This commit is contained in:
Aaron Ballman 2015-02-05 13:52:42 +00:00
parent 1b072b340b
commit 94d4d33a38
1 changed files with 1 additions and 1 deletions

View File

@ -699,7 +699,7 @@ INITIALIZE_PASS_END(PlaceSafepoints, "place-safepoints", "Place Safepoints",
static bool isGCLeafFunction(const CallSite &CS) {
Instruction *inst = CS.getInstruction();
if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(inst)) {
if (isa<IntrinsicInst>(inst)) {
// Most LLVM intrinsics are things which can never take a safepoint.
// As a result, we don't need to have the stack parsable at the
// callsite. This is a highly useful optimization since intrinsic