[llvm-commits] [poolalloc] r44677 - /poolalloc/trunk/include/poolalloc/PoolAllocate.h

John Criswell criswell at uiuc.edu
Fri Dec 7 10:05:13 PST 2007


Author: criswell
Date: Fri Dec  7 12:05:12 2007
New Revision: 44677

URL: http://llvm.org/viewvc/llvm-project?rev=44677&view=rev
Log:
Do not use an absolute path to find the header file from SAFECode.  The
configure script now sets up -I options to the compiler to help us find it.

Modified:
    poolalloc/trunk/include/poolalloc/PoolAllocate.h

Modified: poolalloc/trunk/include/poolalloc/PoolAllocate.h
URL: http://llvm.org/viewvc/llvm-project/poolalloc/trunk/include/poolalloc/PoolAllocate.h?rev=44677&r1=44676&r2=44677&view=diff

==============================================================================
--- poolalloc/trunk/include/poolalloc/PoolAllocate.h (original)
+++ poolalloc/trunk/include/poolalloc/PoolAllocate.h Fri Dec  7 12:05:12 2007
@@ -26,8 +26,7 @@
 #include "poolalloc/Config/config.h"
 
 #ifdef SAFECODE
-//FIXME : make this use some configuration options
-#include "/home/vadve/criswell/src/latestllvm/projects/safecode/include/ConvertUnsafeAllocas.h"
+#include "ConvertUnsafeAllocas.h"
 #endif
 
 





More information about the llvm-commits mailing list