blockfreq: Remove more extra typenames from r207438
authorDuncan P. N. Exon Smith <dexonsmith@apple.com>
Mon, 28 Apr 2014 20:22:29 +0000 (20:22 +0000)
committerDuncan P. N. Exon Smith <dexonsmith@apple.com>
Mon, 28 Apr 2014 20:22:29 +0000 (20:22 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207440 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/BlockFrequencyInfoImpl.cpp

index a12128318e248e7ebbd0ad6d69faec2634fe822f..c78ed88ab6543343eb2ad440964e3f6664b00bca 100644 (file)
@@ -885,8 +885,8 @@ namespace llvm {
 template <> struct GraphTraits<IrreducibleGraph> {
   typedef bfi_detail::IrreducibleGraph GraphT;
 
-  typedef const typename GraphT::IrrNode NodeType;
-  typedef typename GraphT::IrrNode::iterator ChildIteratorType;
+  typedef const GraphT::IrrNode NodeType;
+  typedef GraphT::IrrNode::iterator ChildIteratorType;
 
   static const NodeType *getEntryNode(const GraphT &G) {
     return G.StartIrr;