summaryrefslogtreecommitdiff
path: root/lib/CodeGen
diff options
context:
space:
mode:
authorMatt Arsenault <Matthew.Arsenault@amd.com>2013-12-05 19:37:36 +0000
committerMatt Arsenault <Matthew.Arsenault@amd.com>2013-12-05 19:37:36 +0000
commit5024536352f8473e3b3115361e0e78ed22f873d5 (patch)
tree74798750a38318acfc62363240deb31063e7e12a /lib/CodeGen
parentf3f9cff0fb72ccc1f9d06904990318bf227c40e1 (diff)
downloadllvm-5024536352f8473e3b3115361e0e78ed22f873d5.tar.gz
llvm-5024536352f8473e3b3115361e0e78ed22f873d5.tar.bz2
llvm-5024536352f8473e3b3115361e0e78ed22f873d5.tar.xz
Fix minor GCC warnings.
Unused typedefs and unused variables. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@196526 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r--lib/CodeGen/MachineBlockPlacement.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/CodeGen/MachineBlockPlacement.cpp b/lib/CodeGen/MachineBlockPlacement.cpp
index 7eec164f14..b725bfb49c 100644
--- a/lib/CodeGen/MachineBlockPlacement.cpp
+++ b/lib/CodeGen/MachineBlockPlacement.cpp
@@ -949,7 +949,6 @@ void MachineBlockPlacement::buildCFGChains(MachineFunction &F) {
BlockChain &FunctionChain = *BlockToChain[&F.front()];
buildChain(&F.front(), FunctionChain, BlockWorkList);
- typedef SmallPtrSet<MachineBasicBlock *, 16> FunctionBlockSetType;
DEBUG({
// Crash at the end so we get all of the debugging output first.
bool BadFunc = false;