diff options
| author | Brian Gaeke <gaeke@uiuc.edu> | 2003-09-24 04:09:50 +0000 |
|---|---|---|
| committer | Brian Gaeke <gaeke@uiuc.edu> | 2003-09-24 04:09:50 +0000 |
| commit | aec3e583487c95c5053a7da1ac623089a845a4b8 (patch) | |
| tree | 40870456cbaa9b8a0486b7386db1c32b9b601245 | |
| parent | 8560a069f8bde9ed3e0d67ed4d3f38de4d2f1a02 (diff) | |
| download | bcm5719-llvm-aec3e583487c95c5053a7da1ac623089a845a4b8.tar.gz bcm5719-llvm-aec3e583487c95c5053a7da1ac623089a845a4b8.zip | |
Fix a typo I happened to notice.
Rename include guards in the "usual" manner.
llvm-svn: 8695
| -rw-r--r-- | llvm/include/llvm/Support/InstIterator.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/include/llvm/Support/InstIterator.h b/llvm/include/llvm/Support/InstIterator.h index e9db75bb284..06fc9bd2818 100644 --- a/llvm/include/llvm/Support/InstIterator.h +++ b/llvm/include/llvm/Support/InstIterator.h @@ -9,13 +9,13 @@ // //===----------------------------------------------------------------------===// -#ifndef LLVM_INST_ITERATOR_H -#define LLVM_INST_ITERATOR_H +#ifndef LLVM_SUPPORT_INSTITERATOR_H +#define LLVM_SUPPORT_INSTITERATOR_H #include "llvm/BasicBlock.h" #include "llvm/Function.h" -// This class is implements inst_begin() & inst_end() for +// This class implements inst_begin() & inst_end() for // inst_iterator and const_inst_iterator's. // template <class _BB_t, class _BB_i_t, class _BI_t, class _II_t> |

