summaryrefslogtreecommitdiff
path: root/include/llvm/Support/InstIterator.h
diff options
context:
space:
mode:
authorBrian Gaeke <gaeke@uiuc.edu>2003-09-24 04:09:50 +0000
committerBrian Gaeke <gaeke@uiuc.edu>2003-09-24 04:09:50 +0000
commit02dea4b355f3262a52dd9df0d24e59beb1bc6ec4 (patch)
tree69a075f46b14dd9b99fc0424a31e7d0ef3f19d36 /include/llvm/Support/InstIterator.h
parentccee2960491664a56aa8249f06d86e040984ca1e (diff)
downloadllvm-02dea4b355f3262a52dd9df0d24e59beb1bc6ec4.tar.gz
llvm-02dea4b355f3262a52dd9df0d24e59beb1bc6ec4.tar.bz2
llvm-02dea4b355f3262a52dd9df0d24e59beb1bc6ec4.tar.xz
Fix a typo I happened to notice.
Rename include guards in the "usual" manner. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8695 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/InstIterator.h')
-rw-r--r--include/llvm/Support/InstIterator.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/Support/InstIterator.h b/include/llvm/Support/InstIterator.h
index e9db75bb28..06fc9bd281 100644
--- a/include/llvm/Support/InstIterator.h
+++ b/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>