From 7a5659176fb789227ee62752ae16b16a20c2376c Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 15 May 2005 17:23:19 +0000 Subject: [PATCH] fix compiler warning git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22059 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Analysis/LoopInfo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/Analysis/LoopInfo.h b/include/llvm/Analysis/LoopInfo.h index 95626a42922..5e818bcbe19 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(&LoopInfo::stub)); +LOOP_INFO_INCLUDE_FILE((void*)(&LoopInfo::stub)); // Allow clients to walk the list of nested loops... template <> struct GraphTraits { -- 2.34.1