From fa4ff8ab29fabcc6ef78628b0a127c3eac9b28c3 Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Fri, 14 Feb 2014 22:48:49 +0000 Subject: [PATCH] Hopefully fix the build with gcc. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@201443 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/IR/Dominators.h | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) 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));