[llvm] r201443 - Hopefully fix the build with gcc.
Rafael Espindola
rafael.espindola at gmail.com
Fri Feb 14 14:48:49 PST 2014
Author: rafael
Date: Fri Feb 14 16:48:49 2014
New Revision: 201443
URL: http://llvm.org/viewvc/llvm-project?rev=201443&view=rev
Log:
Hopefully fix the build with gcc.
Modified:
llvm/trunk/include/llvm/IR/Dominators.h
Modified: llvm/trunk/include/llvm/IR/Dominators.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/IR/Dominators.h?rev=201443&r1=201442&r2=201443&view=diff
==============================================================================
--- llvm/trunk/include/llvm/IR/Dominators.h (original)
+++ llvm/trunk/include/llvm/IR/Dominators.h Fri Feb 14 16:48:49 2014
@@ -35,11 +35,10 @@ EXTERN_TEMPLATE_INSTANTIATION(class DomT
EXTERN_TEMPLATE_INSTANTIATION(class DominatorTreeBase<BasicBlock>);
#define LLVM_COMMA ,
-EXTERN_TEMPLATE_INSTANTIATION(
- void llvm::Calculate<Function LLVM_COMMA BasicBlock *>(
- DominatorTreeBase<typename GraphTraits<BasicBlock *>::NodeType> &DT
- LLVM_COMMA Function &F));
-EXTERN_TEMPLATE_INSTANTIATION(void llvm::Calculate<
+EXTERN_TEMPLATE_INSTANTIATION(void Calculate<Function LLVM_COMMA BasicBlock *>(
+ DominatorTreeBase<typename GraphTraits<BasicBlock *>::NodeType> &DT
+ LLVM_COMMA Function &F));
+EXTERN_TEMPLATE_INSTANTIATION(void Calculate<
Function LLVM_COMMA Inverse<BasicBlock *> >(DominatorTreeBase<
typename GraphTraits<Inverse<BasicBlock *> >::NodeType> &DT LLVM_COMMA
Function &F));
More information about the llvm-commits
mailing list