[llvm-commits] CVS: llvm/include/llvm/Analysis/LoopInfo.h 
    Chris Lattner 
    lattner at persephone.cs.uiuc.edu
       
    Sun May 15 10:23:41 PDT 2005
    
    
  
Changes in directory llvm/include/llvm/Analysis:
LoopInfo.h updated: 1.47 -> 1.48
---
Log message:
fix compiler warning
---
Diffs of the changes:  (+1 -1)
 LoopInfo.h |    2 +-
 1 files changed, 1 insertion, 1 deletion
Index: llvm/include/llvm/Analysis/LoopInfo.h
diff -u llvm/include/llvm/Analysis/LoopInfo.h:1.47 llvm/include/llvm/Analysis/LoopInfo.h:1.48
--- llvm/include/llvm/Analysis/LoopInfo.h:1.47	Sun May 15 11:13:11 2005
+++ llvm/include/llvm/Analysis/LoopInfo.h	Sun May 15 12:23:19 2005
@@ -301,7 +301,7 @@
 
 // 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*> {
    
    
More information about the llvm-commits
mailing list