[llvm-commits] CVS: poolalloc/lib/PoolAllocate/PoolAllocate.cpp PoolAllocate.h TransformFunctionBody.cpp

Chris Lattner lattner at cs.uiuc.edu
Thu Nov 4 12:13:10 PST 2004



Changes in directory poolalloc/lib/PoolAllocate:

PoolAllocate.cpp updated: 1.80 -> 1.81
PoolAllocate.h updated: 1.26 -> 1.27
TransformFunctionBody.cpp updated: 1.31 -> 1.32

---
Log message:

Add missing headers


---
Diffs of the changes:  (+21 -0)

Index: poolalloc/lib/PoolAllocate/PoolAllocate.cpp
diff -u poolalloc/lib/PoolAllocate/PoolAllocate.cpp:1.80 poolalloc/lib/PoolAllocate/PoolAllocate.cpp:1.81
--- poolalloc/lib/PoolAllocate/PoolAllocate.cpp:1.80	Thu Nov  4 00:10:26 2004
+++ poolalloc/lib/PoolAllocate/PoolAllocate.cpp	Thu Nov  4 14:13:00 2004
@@ -1,4 +1,11 @@
 //===-- PoolAllocate.cpp - Pool Allocation Pass ---------------------------===//
+// 
+//                     The LLVM Compiler Infrastructure
+//
+// This file was developed by the LLVM research group and is distributed under
+// the University of Illinois Open Source License. See LICENSE.TXT for details.
+// 
+//===----------------------------------------------------------------------===//
 //
 // This transform changes programs so that disjoint data structures are
 // allocated out of different pools of memory, increasing locality.


Index: poolalloc/lib/PoolAllocate/PoolAllocate.h
diff -u poolalloc/lib/PoolAllocate/PoolAllocate.h:1.26 poolalloc/lib/PoolAllocate/PoolAllocate.h:1.27
--- poolalloc/lib/PoolAllocate/PoolAllocate.h:1.26	Tue Nov  2 00:39:22 2004
+++ poolalloc/lib/PoolAllocate/PoolAllocate.h	Thu Nov  4 14:13:00 2004
@@ -1,4 +1,11 @@
 //===-- PoolAllocate.h - Pool allocation pass -------------------*- C++ -*-===//
+// 
+//                     The LLVM Compiler Infrastructure
+//
+// This file was developed by the LLVM research group and is distributed under
+// the University of Illinois Open Source License. See LICENSE.TXT for details.
+// 
+//===----------------------------------------------------------------------===//
 //
 // This transform changes programs so that disjoint data structures are
 // allocated out of different pools of memory, increasing locality.  This header


Index: poolalloc/lib/PoolAllocate/TransformFunctionBody.cpp
diff -u poolalloc/lib/PoolAllocate/TransformFunctionBody.cpp:1.31 poolalloc/lib/PoolAllocate/TransformFunctionBody.cpp:1.32
--- poolalloc/lib/PoolAllocate/TransformFunctionBody.cpp:1.31	Tue Nov  2 00:42:21 2004
+++ poolalloc/lib/PoolAllocate/TransformFunctionBody.cpp	Thu Nov  4 14:13:00 2004
@@ -1,4 +1,11 @@
 //===-- TransformFunctionBody.cpp - Pool Function Transformer -------------===//
+// 
+//                     The LLVM Compiler Infrastructure
+//
+// This file was developed by the LLVM research group and is distributed under
+// the University of Illinois Open Source License. See LICENSE.TXT for details.
+// 
+//===----------------------------------------------------------------------===//
 //
 // This file defines the PoolAllocate::TransformBody method.
 //





More information about the llvm-commits mailing list