[llvm-commits] CVS: llvm/tools/llee/ExecveHandler.c OSInterface.h StorageProxy.c SysUtils.c
Reid Spencer
reid at x10sys.com
Wed Sep 1 15:55:58 PDT 2004
Changes in directory llvm/tools/llee:
ExecveHandler.c updated: 1.8 -> 1.9
OSInterface.h updated: 1.3 -> 1.4
StorageProxy.c updated: 1.2 -> 1.3
SysUtils.c updated: 1.6 -> 1.7
---
Log message:
Changes For Bug 352: http://llvm.cs.uiuc.edu/PR352
Move include/Config and include/Support into include/llvm/Config,
include/llvm/ADT and include/llvm/Support. From here on out, all LLVM
public header files must be under include/llvm/.
---
Diffs of the changes: (+12 -12)
Index: llvm/tools/llee/ExecveHandler.c
diff -u llvm/tools/llee/ExecveHandler.c:1.8 llvm/tools/llee/ExecveHandler.c:1.9
--- llvm/tools/llee/ExecveHandler.c:1.8 Wed Aug 4 16:19:49 2004
+++ llvm/tools/llee/ExecveHandler.c Wed Sep 1 17:55:37 2004
@@ -13,7 +13,7 @@
\*===----------------------------------------------------------------------===*/
#include "SysUtils.h"
-#include "Config/unistd.h"
+#include "llvm/Config/unistd.h"
#include <errno.h>
#include <stdlib.h>
#include <fcntl.h>
Index: llvm/tools/llee/OSInterface.h
diff -u llvm/tools/llee/OSInterface.h:1.3 llvm/tools/llee/OSInterface.h:1.4
--- llvm/tools/llee/OSInterface.h:1.3 Wed Aug 4 16:19:49 2004
+++ llvm/tools/llee/OSInterface.h Wed Sep 1 17:55:37 2004
@@ -16,7 +16,7 @@
#ifndef OS_INTERFACE_H
#define OS_INTERFACE_H
-#include "Config/sys/types.h"
+#include "llvm/Config/sys/types.h"
struct stat;
Index: llvm/tools/llee/StorageProxy.c
diff -u llvm/tools/llee/StorageProxy.c:1.2 llvm/tools/llee/StorageProxy.c:1.3
--- llvm/tools/llee/StorageProxy.c:1.2 Sat Jan 10 13:12:09 2004
+++ llvm/tools/llee/StorageProxy.c Wed Sep 1 17:55:37 2004
@@ -7,10 +7,10 @@
#include "OSInterface.h"
#include "SysUtils.h"
-#include "Config/fcntl.h"
-#include "Config/unistd.h"
-#include "Config/sys/types.h"
-#include "Config/sys/stat.h"
+#include "llvm/Config/fcntl.h"
+#include "llvm/Config/unistd.h"
+#include "llvm/Config/sys/types.h"
+#include "llvm/Config/sys/stat.h"
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
Index: llvm/tools/llee/SysUtils.c
diff -u llvm/tools/llee/SysUtils.c:1.6 llvm/tools/llee/SysUtils.c:1.7
--- llvm/tools/llee/SysUtils.c:1.6 Wed Aug 4 16:19:49 2004
+++ llvm/tools/llee/SysUtils.c Wed Sep 1 17:55:37 2004
@@ -13,12 +13,12 @@
\*===----------------------------------------------------------------------===*/
#include "SysUtils.h"
-#include "Config/dlfcn.h"
-#include "Config/fcntl.h"
-#include "Config/unistd.h"
-#include "Config/sys/stat.h"
-#include "Config/sys/types.h"
-#include "Config/sys/wait.h"
+#include "llvm/Config/dlfcn.h"
+#include "llvm/Config/fcntl.h"
+#include "llvm/Config/unistd.h"
+#include "llvm/Config/sys/stat.h"
+#include "llvm/Config/sys/types.h"
+#include "llvm/Config/sys/wait.h"
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
More information about the llvm-commits
mailing list