summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-02-24 23:01:21 +0000
committerChris Lattner <sabre@nondot.org>2002-02-24 23:01:21 +0000
commit1ddf664f743f3c8d2ff220888386a9b84396dcab (patch)
treeea8b236c27ef4974372cbc2c3cf6ed15b8b85da6 /include
parent04bb837cc0edf2f1908a0ec9b04989598a13cc6a (diff)
downloadllvm-1ddf664f743f3c8d2ff220888386a9b84396dcab.tar.gz
llvm-1ddf664f743f3c8d2ff220888386a9b84396dcab.tar.bz2
llvm-1ddf664f743f3c8d2ff220888386a9b84396dcab.tar.xz
Make it compile with GCC 3.0.4
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1786 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Analysis/LiveVar/ValueSet.h2
-rw-r--r--include/llvm/CodeGen/ValueSet.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Analysis/LiveVar/ValueSet.h b/include/llvm/Analysis/LiveVar/ValueSet.h
index 048d8df4c5..0c0aefad20 100644
--- a/include/llvm/Analysis/LiveVar/ValueSet.h
+++ b/include/llvm/Analysis/LiveVar/ValueSet.h
@@ -10,7 +10,7 @@ struct RAV { // Register Allocator Value
const Value *V;
RAV(const Value *v) : V(v) {}
};
-ostream &operator<<(ostream &out, RAV Val);
+std::ostream &operator<<(std::ostream &out, RAV Val);
typedef std::set<const Value*> ValueSet;
diff --git a/include/llvm/CodeGen/ValueSet.h b/include/llvm/CodeGen/ValueSet.h
index 048d8df4c5..0c0aefad20 100644
--- a/include/llvm/CodeGen/ValueSet.h
+++ b/include/llvm/CodeGen/ValueSet.h
@@ -10,7 +10,7 @@ struct RAV { // Register Allocator Value
const Value *V;
RAV(const Value *v) : V(v) {}
};
-ostream &operator<<(ostream &out, RAV Val);
+std::ostream &operator<<(std::ostream &out, RAV Val);
typedef std::set<const Value*> ValueSet;