aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Analysis
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-05-15 17:23:19 +0000
committerChris Lattner <sabre@nondot.org>2005-05-15 17:23:19 +0000
commit7a5659176fb789227ee62752ae16b16a20c2376c (patch)
tree8772fbec514c5ec8c7a384dbe99f5396e89500ce /include/llvm/Analysis
parentc64e3e77f9c69e86b15ba6f8d18bb7aa4b7a9d68 (diff)
downloadexternal_llvm-7a5659176fb789227ee62752ae16b16a20c2376c.zip
external_llvm-7a5659176fb789227ee62752ae16b16a20c2376c.tar.gz
external_llvm-7a5659176fb789227ee62752ae16b16a20c2376c.tar.bz2
fix compiler warning
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22059 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis')
-rw-r--r--include/llvm/Analysis/LoopInfo.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Analysis/LoopInfo.h b/include/llvm/Analysis/LoopInfo.h
index 95626a4..5e818bc 100644
--- a/include/llvm/Analysis/LoopInfo.h
+++ b/include/llvm/Analysis/LoopInfo.h
@@ -301,7 +301,7 @@ private:
// Make sure that any clients of this file link in LoopInfo.cpp
static IncludeFile
-LOOP_INFO_INCLUDE_FILE(reinterpret_cast<void*>(&LoopInfo::stub));
+LOOP_INFO_INCLUDE_FILE((void*)(&LoopInfo::stub));
// Allow clients to walk the list of nested loops...
template <> struct GraphTraits<const Loop*> {