From: Rafael Espindola Date: Fri, 14 Feb 2014 22:48:49 +0000 (+0000) Subject: Hopefully fix the build with gcc. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=fa4ff8ab29fabcc6ef78628b0a127c3eac9b28c3;p=oota-llvm.git Hopefully fix the build with gcc. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@201443 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/IR/Dominators.h b/include/llvm/IR/Dominators.h index 0faa3b886fe..1067ef77984 100644 --- a/include/llvm/IR/Dominators.h +++ b/include/llvm/IR/Dominators.h @@ -35,11 +35,10 @@ EXTERN_TEMPLATE_INSTANTIATION(class DomTreeNodeBase); EXTERN_TEMPLATE_INSTANTIATION(class DominatorTreeBase); #define LLVM_COMMA , -EXTERN_TEMPLATE_INSTANTIATION( - void llvm::Calculate( - DominatorTreeBase::NodeType> &DT - LLVM_COMMA Function &F)); -EXTERN_TEMPLATE_INSTANTIATION(void llvm::Calculate< +EXTERN_TEMPLATE_INSTANTIATION(void Calculate( + DominatorTreeBase::NodeType> &DT + LLVM_COMMA Function &F)); +EXTERN_TEMPLATE_INSTANTIATION(void Calculate< Function LLVM_COMMA Inverse >(DominatorTreeBase< typename GraphTraits >::NodeType> &DT LLVM_COMMA Function &F));