From: Rafael Espindola Date: Sun, 16 Feb 2014 14:12:35 +0000 (+0000) Subject: Remove unnecessary typename. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=2a8437fa6ac4f8bbf936d858832185e49acdc798;p=oota-llvm.git Remove unnecessary typename. Thanks to Elena Demikhovsky for noticing. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@201494 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/IR/Dominators.cpp b/lib/IR/Dominators.cpp index baa6019098d..84cd86bf49a 100644 --- a/lib/IR/Dominators.cpp +++ b/lib/IR/Dominators.cpp @@ -66,12 +66,12 @@ TEMPLATE_INSTANTIATION(class llvm::DominatorTreeBase); #define LLVM_COMMA , TEMPLATE_INSTANTIATION(void llvm::Calculate( - DominatorTreeBase::NodeType> &DT - LLVM_COMMA Function &F)); -TEMPLATE_INSTANTIATION(void llvm::Calculate< - Function LLVM_COMMA Inverse >(DominatorTreeBase< - typename GraphTraits >::NodeType> &DT LLVM_COMMA - Function &F)); + DominatorTreeBase::NodeType> &DT LLVM_COMMA + Function &F)); +TEMPLATE_INSTANTIATION( + void llvm::Calculate >( + DominatorTreeBase >::NodeType> &DT + LLVM_COMMA Function &F)); #undef LLVM_COMMA // dominates - Return true if Def dominates a use in User. This performs