From: Rafael Espindola Date: Fri, 14 Feb 2014 22:48:49 +0000 (+0000) Subject: Hopefully fix the build with gcc. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=440ffd395771d66e0d8fd6db785333411cfcc8b2;p=platform%2Fupstream%2Fllvm.git Hopefully fix the build with gcc. llvm-svn: 201443 --- diff --git a/llvm/include/llvm/IR/Dominators.h b/llvm/include/llvm/IR/Dominators.h index 0faa3b8..1067ef7 100644 --- a/llvm/include/llvm/IR/Dominators.h +++ b/llvm/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));