diff options
author | Chris Lattner <sabre@nondot.org> | 2006-06-01 17:17:46 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-06-01 17:17:46 +0000 |
commit | 080e25d884d9b9499b3e5330f42847fbb8db8232 (patch) | |
tree | ec51d30e40b16112832ca0f2645d968d1b79817c /include/llvm/Analysis | |
parent | 08a9a985dc7881cad0321ae95147f0a4b04647a8 (diff) | |
download | external_llvm-080e25d884d9b9499b3e5330f42847fbb8db8232.zip external_llvm-080e25d884d9b9499b3e5330f42847fbb8db8232.tar.gz external_llvm-080e25d884d9b9499b3e5330f42847fbb8db8232.tar.bz2 |
Fix -pedantic warning
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28634 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis')
-rw-r--r-- | include/llvm/Analysis/CallGraph.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Analysis/CallGraph.h b/include/llvm/Analysis/CallGraph.h index 5602cec..e51a3c7 100644 --- a/include/llvm/Analysis/CallGraph.h +++ b/include/llvm/Analysis/CallGraph.h @@ -291,8 +291,8 @@ template<> struct GraphTraits<const CallGraph*> : static IncludeFile CALLGRAPH_INCLUDE_FILE(&CallGraph::stub); -extern void BasicCallGraphStub(); -static IncludeFile HDR_INCLUDE_CALLGRAPH_CPP((void*)&BasicCallGraphStub); +extern int BasicCallGraphStub; +static IncludeFile HDR_INCLUDE_CALLGRAPH_CPP(&BasicCallGraphStub); } // End llvm namespace |