[llvm-commits] [poolalloc] r98354 - /poolalloc/trunk/runtime/FreeListAllocator/PoolAllocator.cpp
John Criswell
criswell at uiuc.edu
Fri Mar 12 09:10:10 PST 2010
Author: criswell
Date: Fri Mar 12 11:10:10 2010
New Revision: 98354
URL: http://llvm.org/viewvc/llvm-project?rev=98354&view=rev
Log:
Switched to using stdint.h instead of LLVM's DataTypes.h header file.
The DataTypes.h header files was removed from LLVM 2.7.
Modified:
poolalloc/trunk/runtime/FreeListAllocator/PoolAllocator.cpp
Modified: poolalloc/trunk/runtime/FreeListAllocator/PoolAllocator.cpp
URL: http://llvm.org/viewvc/llvm-project/poolalloc/trunk/runtime/FreeListAllocator/PoolAllocator.cpp?rev=98354&r1=98353&r2=98354&view=diff
==============================================================================
--- poolalloc/trunk/runtime/FreeListAllocator/PoolAllocator.cpp (original)
+++ poolalloc/trunk/runtime/FreeListAllocator/PoolAllocator.cpp Fri Mar 12 11:10:10 2010
@@ -16,10 +16,9 @@
#include "PageManager.h"
#include "PoolSlab.h"
#include <assert.h>
-#include <stdlib.h>
+#include <stdint.h>
#include <stdio.h>
-
-#include "llvm/Support/DataTypes.h"
+#include <stdlib.h>
//===----------------------------------------------------------------------===//
//
More information about the llvm-commits
mailing list