From f686cfb33b232db5f9a671ddaf1265b42c7180d5 Mon Sep 17 00:00:00 2001 From: Eric Christopher Date: Wed, 27 Feb 2013 23:49:45 +0000 Subject: [PATCH] Remove unnecessary cast to void. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@176222 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index aca09156731..2d15591f4a5 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp @@ -1078,7 +1078,6 @@ void SelectionDAGISel::SelectAllBasicBlocks(const Function &Fn) { } unsigned NumFastIselRemaining = std::distance(Begin, End); - (void) NumFastIselRemaining; // Do FastISel on as many instructions as possible. for (; BI != Begin; --BI) { const Instruction *Inst = llvm::prior(BI);