[llvm-commits] CVS: llvm/lib/CodeGen/RegAllocLinearScan.cpp RegAllocLocal.cpp RegAllocSimple.cpp
Chris Lattner
lattner at cs.uiuc.edu
Sun Jan 22 15:40:08 PST 2006
Changes in directory llvm/lib/CodeGen:
RegAllocLinearScan.cpp updated: 1.117 -> 1.118
RegAllocLocal.cpp updated: 1.76 -> 1.77
RegAllocSimple.cpp updated: 1.65 -> 1.66
---
Log message:
Add explicit #includes of <iostream>
---
Diffs of the changes: (+3 -0)
RegAllocLinearScan.cpp | 1 +
RegAllocLocal.cpp | 1 +
RegAllocSimple.cpp | 1 +
3 files changed, 3 insertions(+)
Index: llvm/lib/CodeGen/RegAllocLinearScan.cpp
diff -u llvm/lib/CodeGen/RegAllocLinearScan.cpp:1.117 llvm/lib/CodeGen/RegAllocLinearScan.cpp:1.118
--- llvm/lib/CodeGen/RegAllocLinearScan.cpp:1.117 Tue Dec 27 22:55:42 2005
+++ llvm/lib/CodeGen/RegAllocLinearScan.cpp Sun Jan 22 17:39:54 2006
@@ -28,6 +28,7 @@
#include "llvm/Support/Debug.h"
#include <algorithm>
#include <cmath>
+#include <iostream>
#include <set>
#include <queue>
#include <memory>
Index: llvm/lib/CodeGen/RegAllocLocal.cpp
diff -u llvm/lib/CodeGen/RegAllocLocal.cpp:1.76 llvm/lib/CodeGen/RegAllocLocal.cpp:1.77
--- llvm/lib/CodeGen/RegAllocLocal.cpp:1.76 Wed Nov 9 12:22:42 2005
+++ llvm/lib/CodeGen/RegAllocLocal.cpp Sun Jan 22 17:39:54 2006
@@ -26,6 +26,7 @@
#include "llvm/ADT/DenseMap.h"
#include "llvm/ADT/Statistic.h"
#include <algorithm>
+#include <iostream>
using namespace llvm;
namespace {
Index: llvm/lib/CodeGen/RegAllocSimple.cpp
diff -u llvm/lib/CodeGen/RegAllocSimple.cpp:1.65 llvm/lib/CodeGen/RegAllocSimple.cpp:1.66
--- llvm/lib/CodeGen/RegAllocSimple.cpp:1.65 Thu Sep 29 20:29:00 2005
+++ llvm/lib/CodeGen/RegAllocSimple.cpp Sun Jan 22 17:39:54 2006
@@ -25,6 +25,7 @@
#include "llvm/Support/Debug.h"
#include "llvm/ADT/Statistic.h"
#include "llvm/ADT/STLExtras.h"
+#include <iostream>
using namespace llvm;
namespace {
More information about the llvm-commits
mailing list