diff options
author | Chris Lattner <sabre@nondot.org> | 2002-02-24 23:01:21 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-02-24 23:01:21 +0000 |
commit | 1ddf664f743f3c8d2ff220888386a9b84396dcab (patch) | |
tree | ea8b236c27ef4974372cbc2c3cf6ed15b8b85da6 /include/llvm | |
parent | 04bb837cc0edf2f1908a0ec9b04989598a13cc6a (diff) | |
download | external_llvm-1ddf664f743f3c8d2ff220888386a9b84396dcab.zip external_llvm-1ddf664f743f3c8d2ff220888386a9b84396dcab.tar.gz external_llvm-1ddf664f743f3c8d2ff220888386a9b84396dcab.tar.bz2 |
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')
-rw-r--r-- | include/llvm/Analysis/LiveVar/ValueSet.h | 2 | ||||
-rw-r--r-- | include/llvm/CodeGen/ValueSet.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Analysis/LiveVar/ValueSet.h b/include/llvm/Analysis/LiveVar/ValueSet.h index 048d8df..0c0aefa 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 048d8df..0c0aefa 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; |