For PR351:
[oota-llvm.git] / include / llvm / Support / SystemUtils.h
index aea7df80eba94f10972fdabc74f8fed3c8a6d04e..e8ead132e9844d48bc55c2f31815e6a31c1d952e 100644 (file)
@@ -53,13 +53,6 @@ int RunProgramWithTimeout(const std::string &ProgramPath, const char **Args,
 ///
 int ExecWait (const char * const argv[], const char * const envp[]);
 
-/// AllocateRWXMemory - Allocate a slab of memory with read/write/execute
-/// permissions.  This is typically used for JIT applications where we want
-/// to emit code to the memory then jump to it.  Getting this type of memory
-/// is very OS specific.
-///
-void *AllocateRWXMemory(unsigned NumBytes);
-
 } // End llvm namespace
 
 #endif