aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/ValueSet.h
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/llvm/CodeGen/ValueSet.h
parent04bb837cc0edf2f1908a0ec9b04989598a13cc6a (diff)
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/llvm/CodeGen/ValueSet.h')
-rw-r--r--include/llvm/CodeGen/ValueSet.h2
1 files changed, 1 insertions, 1 deletions
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;