[llvm-commits] CVS: llvm/include/llvm/Support/InstIterator.h
Brian Gaeke
gaeke at cs.uiuc.edu
Tue Sep 23 23:11:01 PDT 2003
Changes in directory llvm/include/llvm/Support:
InstIterator.h updated: 1.5 -> 1.6
---
Log message:
Fix a typo I happened to notice.
Rename include guards in the "usual" manner.
---
Diffs of the changes:
Index: llvm/include/llvm/Support/InstIterator.h
diff -u llvm/include/llvm/Support/InstIterator.h:1.5 llvm/include/llvm/Support/InstIterator.h:1.6
--- llvm/include/llvm/Support/InstIterator.h:1.5 Wed Apr 23 11:35:30 2003
+++ llvm/include/llvm/Support/InstIterator.h Tue Sep 23 23:09:50 2003
@@ -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>
More information about the llvm-commits
mailing list