[llvm-commits] CVS: reopt/include/reopt/VirtualMem.h
Tanya Brethour
tbrethou at cs.uiuc.edu
Thu Jan 6 11:20:32 PST 2005
Changes in directory reopt/include/reopt:
VirtualMem.h updated: 1.14 -> 1.15
---
Log message:
Changed includes to include system headers instead of the ones generated by configure. This is bad for portability, but the reoptimizer is not portable to begi with.
---
Diffs of the changes: (+2 -2)
Index: reopt/include/reopt/VirtualMem.h
diff -u reopt/include/reopt/VirtualMem.h:1.14 reopt/include/reopt/VirtualMem.h:1.15
--- reopt/include/reopt/VirtualMem.h:1.14 Thu Sep 2 11:55:42 2004
+++ reopt/include/reopt/VirtualMem.h Thu Jan 6 13:20:20 2005
@@ -9,8 +9,8 @@
#define REOPT_VIRTUALMEM_H
#include "llvm/Support/DataTypes.h"
-#include "llvm/Config/fcntl.h"
-#include "llvm/Config/unistd.h"
+#include <fcntl.h>
+#include <unistd.h>
#include <iostream>
#include <vector>
#include <map>
More information about the llvm-commits
mailing list