diff options
author | Chris Lattner <sabre@nondot.org> | 2003-09-30 18:12:25 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-09-30 18:12:25 +0000 |
commit | c36e4f465c68e05d1c2a0be4cd439a52e4f9074f (patch) | |
tree | b8e25dac36e1cc8fb17b254fc7ccc9aa6b3cc9b8 /include | |
parent | 5208ba1292efae29b37e8f268a07802493e3e8b7 (diff) |
Fix header comment
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8779 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/CodeGen/ValueSet.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/ValueSet.h b/include/llvm/CodeGen/ValueSet.h index fa4159a78e..8386e2cbbd 100644 --- a/include/llvm/CodeGen/ValueSet.h +++ b/include/llvm/CodeGen/ValueSet.h @@ -1,7 +1,10 @@ +//===-- llvm/CodeGen/ValueSet.h ---------------------------------*- C++ -*-===// // -// VALUESET.H - This header is OBSOLETE, do not use it for new code. +// This header is OBSOLETE, do not use it for new code. // // FIXME: Eliminate this file. +// +//===----------------------------------------------------------------------===// #ifndef VALUE_SET_H #define VALUE_SET_H @@ -18,7 +21,6 @@ struct RAV { // Register Allocator Value }; std::ostream &operator<<(std::ostream &out, RAV Val); - typedef std::set<const Value*> ValueSet; void printSet(const ValueSet &S); |